import * as react from 'react'; import { a as InputBaseProps, b as InputOption } from './inputs.types-CJbAS14j.cjs'; import './types-8Sv0rCjw.cjs'; interface CheckboxGroupProps extends Omit { list: InputOption[]; value?: V[]; defaultValue?: V[]; onValueChange?: (values: V[]) => void; orientation?: "horizontal" | "vertical"; } declare function CheckboxGroup({ size, dirty, error, label, labelHidden, description, required, disabled, className, name, list, value: controlledValue, defaultValue, onValueChange, orientation, mode, ...rest }: CheckboxGroupProps): react.JSX.Element; declare namespace CheckboxGroup { var displayName: string; } export { CheckboxGroup, type CheckboxGroupProps };