import { PropsWithChildren, ReactNode } from 'react'; import { BaseProps } from '../../types.cjs'; import '@emotion/react'; type CheckboxGroupProps = PropsWithChildren> & { /** * @deprecated Use `legend` instead */ label?: string | ReactNode; legend?: string | ReactNode; direction?: "row" | "column"; }; export { CheckboxGroupProps };