import { FunctionComponent, ReactNode } from 'react'; import { POSITION } from './InputLabel'; export type CheckLabelPosition = POSITION.LEFT | POSITION.RIGHT; export interface StyledCheckLabelProps { isLabelVisible?: boolean; labelPosition?: CheckLabelPosition; htmlFor: string; hideError?: boolean; } export interface StyledCheckLabelTextProps { isLabelVisible?: boolean; labelPosition?: CheckLabelPosition; disabled?: boolean; hideError?: boolean; } export interface LabelProps { htmlFor: string; label: string; labelPosition?: CheckLabelPosition; isLabelVisible?: boolean; isRequired?: boolean; disabled?: boolean; hideError?: boolean; children: ReactNode[]; } declare const CheckLabel: FunctionComponent; export default CheckLabel;