/// type TypicalInstance = google.maps.MVCObject & { setOptions(options: any): void; }; type OptionsOf = NonNullable[0]>; type CommonProps = { defaultOptions: OptionsOf; }; type PreventLoadProps = { /** * if `true` loading of required lib will not be started by render of component */ preventLoad?: boolean; }; export type { CommonProps as C, PreventLoadProps as P };