import { InputFieldProps } from "./InputField";
/**
 * Phone input props
 */
export type PhoneInputProps = Omit<InputFieldProps, "type"> & {};
/**
 * Phone input
 * @param props Props
 */
export declare function PhoneInput(props: PhoneInputProps): import("react/jsx-runtime").JSX.Element;
