import { ButtonHTMLAttributes, ReactNode } from 'react'; type ExcludedProps = 'className' | 'onClick'; type MyLocationControlProps = Omit, ExcludedProps> & { children?: ReactNode; className?: string; enableHighAccuracy?: boolean; onBusy?(busy: boolean): void; onClick?(): void; onError?(): void; onSuccess?(): void; }; export declare const MyLocationControl: (props: MyLocationControlProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MyLocationControl.d.ts.map