import { Hint } from '../hint/hint';
export interface CheckOptionItem {
    text: string;
    value: any;
    checked?: boolean;
    hint?: string | Hint;
    textDivider?: string;
    onChange?: (value: boolean) => any;
}
