import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { CheckboxGroupDirection } from "./checkbox-group.shared";
export interface CheckboxGroupProps extends ViewProps {
    defaultValue?: any[];
    value?: any[];
    max?: number;
    direction?: CheckboxGroupDirection;
    children?: ReactNode;
    onChange?(value: any[]): void;
}
declare function CheckboxGroup(props: CheckboxGroupProps): JSX.Element;
export default CheckboxGroup;
