/// import './index.less'; export interface SourceDictType { value?: string | number; label: string; icon?: string; } interface ICheckGroupFixedProps { label: string; source: SourceDictType[]; onChange?: (keys: string[] & number[] & boolean[]) => void; checboxSize?: number; labelSize?: number; cutRow?: number; value?: string[] & number[] & boolean[]; } declare function CheckGroupFixed({ label, source, checboxSize, cutRow, labelSize, value, onChange }: ICheckGroupFixedProps): JSX.Element; export default CheckGroupFixed;