import { type ComponentType } from 'react'; import type { Coords } from 'stream-chat'; export type ShareGeolocationMapProps = Partial & { loadingLocation: boolean; restartLocationWatching: () => void; geolocationPositionError?: GeolocationPositionError; }; export type ShareLocationDialogProps = { close: () => void; shareDurations?: number[]; GeolocationMap?: ComponentType; DurationDropdownItems?: ComponentType; }; export declare const ShareLocationDialog: ({ close, GeolocationMap, shareDurations, }: ShareLocationDialogProps) => import("react/jsx-runtime").JSX.Element; export type DurationDropdownItemsProps = { durations: number[]; selectedDuration?: number; selectDuration: (duration: number) => void; }; //# sourceMappingURL=ShareLocationDialog.d.ts.map