How to can i access PanelProps in PanelComponent

hello, Now I’m moving the Grafana plugin version 6 to version 7.(angular -> react)
When the Panel component is driven, attempt to change the panel setting value to onOptionsChange. but No access to the panel setting value Other than some set values, such as options.

The reason for this is that in version Grafana6, the panel setting values are listed in the equivalent layer, not in the hierarchy under options.
How can I access the panel settings? Not options?

below the code

export const ExamplePanel: React.FC = ({ options, data, onOptionsChange, fieldConfig, replaceVariables }) => {
// i want to access panel value, and then use onOptionsChange to put the panel setting value in options.
}
export const plugin = new PanelPlugin(ExamplePanel);