import type { PaperProps, TooltipProps } from '@mui/material' export interface GeolocationControlProps { disabled?: boolean labels?: { tooltip: { enabled: string disabled: string } ariaLabel: string } PaperProps?: PaperProps TooltipProps?: Omit watch?: boolean onChange: (props: Parameters[0]['coords']) => void onError?: (error: Parameters[0]) => void }