import type { ReactNode } from 'react'; import { type InputBoxProps } from '../InputBox'; export type TelephoneInputProps = Omit & { addon?: ReactNode; input?: ReactNode; error?: string; }; declare const TelephoneInput: import("react").ForwardRefExoticComponent & { addon?: ReactNode; input?: ReactNode; error?: string; } & import("react").RefAttributes>; export default TelephoneInput; //# sourceMappingURL=TelephoneInput.d.ts.map