import { ReactNode } from 'react';
import { InputVariantType, InputSizeType, InputErrorProps } from '../../types';
export interface CheckBoxSimpleLabelOutPropsModel extends InputErrorProps {
    label: string;
    id?: string;
    name?: string;
    items: Array<{
        label: string;
        value: string;
    }>;
    variant?: InputVariantType;
    size?: InputSizeType;
    backgroundColor?: string;
    helperNode?: ReactNode;
}
