import { CheckboxOneSpecificProps, responsesType } from "interface"; import { CheckboxOneCustomOption } from "interface/CheckboxOptions"; export type CheckboxOneProps = { handleChange(response: { [name: string]: string; }, value: string | boolean | number | undefined): void; id?: string; label?: string; options: CheckboxOneCustomOption[]; value: { [key: string]: string; } | string | null | undefined; responses: [ responsesType, responsesType, responsesType, responsesType, responsesType, responsesType ]; bindingDependencies: string[]; className?: string; componentSpecificProps: CheckboxOneSpecificProps; variables: Map; }; declare const _default: (props: any) => JSX.Element; export default _default;