import { CheckboxGroupProps as CheckboxGroupProps$1, StackDirection } from '@chakra-ui/react'; type CheckboxGroupProps = Exclude & { direction?: StackDirection; }; /** * Used to group several checkboxes together. You can pass the default value, as well as whether or not they're all disabled * * ```tsx * * Red * Blue * Green * * ``` * * By default, checkboxes in a CheckboxGroup show up horizontally. If you want them to show up vertically, please specify the `direction="column"` prop. * * ```tsx * * Economy * Business * First Class * */ declare const CheckboxGroup: ({ direction, children, ...props }: CheckboxGroupProps) => JSX.Element; export { CheckboxGroup, CheckboxGroupProps };