/// import { CheckboxGroupSpecificProps } from "interface"; import { CheckboxOption } from "interface/CheckboxOptions"; export type CheckboxGroupProps = { handleChange(response: { [name: string]: string; }, value: boolean): void; id?: string; options: CheckboxOption[]; value: { [key: string]: boolean; }; componentSpecificProps?: CheckboxGroupSpecificProps; }; declare const CheckboxGroup: import("react").MemoExoticComponent<(props: CheckboxGroupProps) => JSX.Element>; export default CheckboxGroup;