/// export declare const statusIcons: { success: import("react").ComponentClass; error: import("react").ComponentClass; warning: import("react").ComponentClass; }; export interface FormControlIconProps extends React.HTMLProps { /** Additional class names added to the text input icon wrapper. */ className?: string; /** A custom icon to render instead of a status icon. */ customIcon?: React.ReactNode; /** The status icon to render. */ status?: 'success' | 'error' | 'warning'; } export declare const FormControlIcon: ({ status, customIcon, className, ...props }: FormControlIconProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FormControlIcon.d.ts.map