type Props = { title?: string; initialIds?: string[]; countries?: string[]; limit?: number; okButtonLoading?: boolean; onClose?: () => void; onOk?: (countries: string[]) => void; }; declare const RegionPicker: ({ title, initialIds, countries, limit, okButtonLoading, onClose, onOk }: Props) => import("react/jsx-runtime").JSX.Element; export default RegionPicker;