import React from 'react'; import type { Direction } from '@mui/material'; import { TextFieldProps } from '@mui/material/TextField/TextField'; export type PhoneInputProps = Omit & { validLength: number; onChange: (value: string) => void; direction?: Direction; }; export declare const PhoneInput: React.FC;