///
import { CheckboxProps, CheckboxGroupProps } from 'antd/es/checkbox';
import { FC, IglooComponentProps } from '../types';
import { ComponentProps } from '../utils/option-utils';
import { DefaultOptionType } from 'rc-select/lib/Select';
import './style';
interface Props extends IglooComponentProps, CheckboxProps {
}
export interface Option extends DefaultOptionType {
extraInfo?: {
content: any;
shownTrigger: 'unchecked' | 'checked' | 'all';
};
}
export interface IProps extends IglooComponentProps, Omit, ComponentProps {
className?: string;
radioType?: string;
options: Option[];
preview?: boolean;
mutuallyExclusions?: Record;
}
declare const IglooCheckbox: FC;
export default IglooCheckbox;
export declare const CheckboxGroup: FC>;