import React from 'react'; import { ControllerProps } from 'react-hook-form'; import { FormControlProps } from '@mui/material'; export type PhoneControlProps = FormControlProps & { name: string; label?: string; defaultValue?: string; clearable?: boolean; disabled?: boolean; enableErrorMessage?: boolean; required?: boolean; rules?: ControllerProps['rules'] | undefined; size?: 'medium' | 'small'; }; declare const PhoneControl: ({ name, label, defaultValue, disabled, clearable, enableErrorMessage, required, rules, size, }: PhoneControlProps) => React.JSX.Element; export default PhoneControl; //# sourceMappingURL=PhoneControl.d.ts.map