import { default as React } from 'react'; export interface ListWithCheckboxItem { id: string; title: string; description?: string; checked?: boolean; disabled?: boolean; } export interface ListWithCheckboxProps { items: ListWithCheckboxItem[]; onCheckboxChange?: (itemId: string, checked: boolean) => void; className?: string; } export declare const ListWithCheckbox: React.FC; //# sourceMappingURL=ListWithCheckbox.d.ts.map