import type { PropsWithChildren } from 'react';
type GroupDirection = 'row' | 'col';
export interface CheckboxGroupProps {
    direction?: GroupDirection;
    error?: boolean;
    helperText?: string;
}
declare function Group({ children, error, helperText, direction, }: PropsWithChildren<CheckboxGroupProps>): JSX.Element;
export default Group;
