import { default as React } from 'react';
export interface ComponentLabelProps {
    required?: boolean;
    label?: React.ReactNode;
    tooltip?: React.ReactNode;
    htmlId?: string;
    noColFormLabelClassname?: boolean;
}
declare const ComponentLabel: React.FC<ComponentLabelProps>;
export default ComponentLabel;
