UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

11 lines (10 loc) 289 B
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;