import * as React from 'react'; export declare const statusIcons: { success: React.ComponentClass; error: React.ComponentClass; warning: 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) => React.JSX.Element; //# sourceMappingURL=FormControlIcon.d.ts.map