import { ReactNode, FunctionComponent } from 'react';

interface InputLabelHelpProps {
    state?: 'default' | 'positive' | 'negative' | 'disabled';
    showicon?: boolean;
    icon?: ReactNode;
    align?: 'left' | 'center' | 'right';
    children?: ReactNode;
    disabled?: boolean;
    required?: boolean;
    paddingLeft?: string | number;
}
declare const InputLabelHelp: FunctionComponent<InputLabelHelpProps>;

export { InputLabelHelp as default };
export type { InputLabelHelpProps };
