import React from 'react'; import { NormalSizes } from '../utils/prop-types'; interface Props { value: string[]; disabled?: boolean; size?: NormalSizes; onChange?: (values: string[]) => void; className?: string; } declare const defaultProps: { disabled: boolean; size: "mini" | "small" | "medium" | "large"; className: string; }; type NativeAttrs = Omit, keyof Props>; export type CheckboxGroupProps = Props & typeof defaultProps & NativeAttrs; export declare const getCheckboxSize: (size: NormalSizes) => string; declare const _default: React.ComponentType & Omit, "className" | "size" | "disabled">>; export default _default;