import { default as React, ReactNode } from 'react'; interface CheckboxOption { label: string; value: string; } interface CheckboxGroupProps { disabled?: boolean; error?: boolean; label?: string; variant?: string; helperText?: string; options: CheckboxOption[]; selectedValues: string[]; onChange: (selectedValues: string[]) => void; direction?: "row" | "column"; iconLeft?: ReactNode; } declare const CheckboxGroup: React.FC; export default CheckboxGroup;