import React from "react"; import { inputHeightDictionary } from "../shared/inputHeightDictionary"; interface Props extends Omit, HTMLInputElement>, "size" | "type"> { /** * Size of text and padding inside the input * * Defaults to `standard` */ size?: keyof typeof inputHeightDictionary; type?: "button" | "checkbox" | "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week"; } /** * Component that decorates an `input` * * `className` and `style` are not available on the props because it would not * be obvious where those props would be added in the DOM. To add a `className` * to either the containing `div` or the underlying `input`, you must use * `containerAs` and `inputAs`. */ export declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>; export {};