/// export interface CheckboxListProps { items: { label: string; checked: boolean; }[]; } export declare function CheckboxList(props: CheckboxListProps): JSX.Element;