import { FieldPath, FieldValues, UseControllerProps } from 'react-hook-form'; import { LatLngLiteral } from 'leaflet'; import { LocationPickerProps } from '../map'; export type RHFLocationPickerProps = FieldPath> = Omit & UseControllerProps & { onChange?: (lanlng: LatLngLiteral) => void; }; declare const RHFLocationPicker: , TFieldValues extends FieldValues = Record>(inProps: RHFLocationPickerProps) => import("react/jsx-runtime").JSX.Element; declare module '@mui/material' { interface Components { RemateRHFLocationPicker?: { defaultProps?: Partial; }; } } export default RHFLocationPicker; //# sourceMappingURL=RHFLocationPicker.d.ts.map