import type { SxProps } from '@mui/material';
import type { CountryIso2 } from 'react-international-phone';
export type CountrySelectProps = {
    value: CountryIso2;
    onChange: (value: CountryIso2) => void;
    name: string;
    sx?: SxProps;
    showDialCode?: boolean;
};
export default function CountrySelect({ ref, value, onChange, name, sx, showDialCode, }: CountrySelectProps & {
    ref?: React.RefObject<HTMLDivElement | null>;
}): import("react").JSX.Element;
