import React from 'react'; /** * Input helper components. This is the text that goes below the input. It * is most likely the error component. */ export interface IInputHelper { /** Passed down classname. */ className?: string; /** Is helper text */ isHelperText?: boolean; /** Passed inline styles */ style?: React.CSSProperties; } export declare const InputHelper: React.FC;