import * as React from "react"; export interface InputProps extends React.InputHTMLAttributes { /** When true, renders error border & ring */ invalid?: boolean; /** Element displayed at the start (left) of the input */ startAdornment?: React.ReactNode; /** Element displayed at the end (right) of the input */ endAdornment?: React.ReactNode; /** Label text displayed above the input */ label?: string; /** Status message displayed below the input */ error?: string; /** Color variant for the message: "error" (red), "warning" (yellow), "success" (green) or "muted" (grey). Only "error" and "warning" mark the field invalid (colored border). */ errorVariant?: "error" | "warning" | "success" | "muted"; /** When true, shows a loading spinner as end adornment */ loading?: boolean; } declare const Input: React.ForwardRefExoticComponent>; export { Input }; //# sourceMappingURL=input.d.ts.map