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