import React from "react"; import type { CheckboxListProps } from "./types"; declare function CheckboxList({ onChange, options, direction, value, name: checkboxListName, ariaLabelledBy, disabled, }: CheckboxListProps): React.JSX.Element; export default CheckboxList;