/// export interface CheckInputInterface { options?: { label: string; isChecked: boolean; }[]; onChange: () => void; } declare const CheckboxInput: ({ options, onChange }: CheckInputInterface) => JSX.Element; export default CheckboxInput;