import { default as React, ReactNode } from 'react'; import { BaseComponentProps } from '../types'; interface FieldLabelProps extends BaseComponentProps { children: ReactNode; label?: string; required?: boolean; optional?: boolean; error?: string; hint?: string; labelType?: 'default' | 'float' | 'fieldset'; htmlFor?: string; id?: string; } export declare const FieldLabel: React.FC; export {};