import React, { CSSProperties } from 'react'; export interface CheckboxGroupProps { /** The array of Radios passed in as children */ children: React.ReactNode | React.ReactNode[]; /** The default values that are checked */ defaultChecked?: Array; /** Name of the checkbox group */ name: string; /** The checkbox checked event handler */ onChange: Function; /** Classes passed to the CheckboxGroup */ className?: string; /** Styles the wrapper container */ groupStyle?: CSSProperties; /** Align checkboxes horizontally */ horizontal?: boolean; /** Size of the checkboxes */ size?: 'regular' | 'medium' | 'large'; } declare const CheckboxGroup: ({ children, defaultChecked, name, groupStyle, onChange, horizontal, size, className, ...other }: CheckboxGroupProps) => JSX.Element; export default CheckboxGroup;