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