interface PhoneEntryProps { value: string; onChange: (value: string) => void; error?: string; required?: boolean; disabled?: boolean; sx?: any; } declare const PhoneEntry: import("react").ForwardRefExoticComponent>; export default PhoneEntry;