import React, { ReactNode, LabelHTMLAttributes } from 'react';
import { HelpTextProps } from '../text';
import { CSSValueWithLength } from '../../styles';
export interface FormLabelProps extends LabelHTMLAttributes {
/** @default false */
required?: boolean;
/** 라벨 help 팝오버 콘텐츠 */
helper?: HelpTextProps;
/** 라벨 우측 렌더링될 Addon 요소 */
rightAddon?: ReactNode;
width?: CSSValueWithLength;
}
export declare const FormLabel: React.ForwardRefExoticComponent>;