import { CheckboxGroupSpecificProps } from "interface"; import { CheckboxOption } from "interface/CheckboxOptions"; export type CheckboxGroupEdtProps = { label?: string; tipsLabel: string; handleChange(response: { [name: string]: string; }, value: boolean | boolean[]): void; id?: string; responses: CheckboxOption[]; value: { [key: string]: boolean | boolean[]; }; className?: string; componentSpecificProps?: CheckboxGroupSpecificProps; variables: Map; bindingDependencies: string[]; isArray?: boolean; indexOfArray?: number; }; declare const _default: (props: any) => JSX.Element; export default _default;