import { type Ref } from 'vue'; import type { ListItemBlockConfig } from './config'; interface Attrs { label: string; checked: boolean; listType: string; } type ListItemProps = { [P in keyof Attrs]: Ref; } & { config: ListItemBlockConfig; readonly: Ref; selected: Ref; setAttr: (attr: T, value: Attrs[T]) => void; onMount: (div: Element) => void; }; export declare const ListItem: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export {}; //# sourceMappingURL=component.d.ts.map