import React from "react"; import { Error } from "../Error"; export interface Props { checkboxesLabel?: string; checkboxesLabelClasses?: string; legend?: string; legendClasses?: string; legendIsQuestionTitle?: boolean; description?: string; checkboxes: CheckboxOptions; id?: string; name?: string; borderless?: boolean; classes?: string; dataTestId: string; dontWrap?: boolean; error?: React.ComponentProps; } export interface CheckboxItem { id: string; name?: string; label: { text: string; description?: string; }; value: string; onClick?: React.MouseEventHandler; onChange?: React.ChangeEventHandler; checked?: boolean; disabled?: boolean; } export interface CheckboxOptions { dataTestId?: string; checkboxesList: CheckboxItem[]; } export declare const Checkboxes: (props: Props) => React.JSX.Element;