/** @alpha */ export interface InputProps extends React.ComponentProps<"input"> { /** The label text for the input */ label?: string; /** The id for the input (used with label) */ id?: string; } /** * An input component. The `type` prop is required if you want styling. * * @example Basic inputs * * ```tsx * * * * * * * * * * * * * * * * ; * ``` * * @example Disabled inputs * * ```tsx * * * * * * * * * * * * * * * * ; * ``` * * @example Input with label * * ```tsx * ; * ``` * * @example Checkboxes and radios * * ```tsx * * (document.getElementById("checkbox2").indeterminate = true) * } * > * * * * * * * ; * ``` * * @example Disabled checkboxes and radios * * ```tsx * * (document.getElementById("checkbox5").indeterminate = true) * } * > * * * * * * * ; * ``` * * @alpha */ export declare const Input: React.FC; //# sourceMappingURL=Input.d.ts.map