/// interface Props { name: string; label?: string; placeholder?: string; } declare type PhoneInputProps = JSX.IntrinsicElements['input'] & Props; export declare function PhoneInput({ name, label, disabled, ...rest }: PhoneInputProps): JSX.Element; export {};