import type { TreeListOptions } from "../TreeList/TreeList.types.js"; export interface TreeListProps extends Omit, Record { loading?: boolean; loadingLabel?: string; error?: boolean; errorMessage?: string; emptyLabel?: string; virtualized?: boolean; viewportHeight?: number; rowHeight?: number; overscan?: number; } export interface TreeListToggleDetail { id: string; expanded: boolean; } export interface TreeListSelectDetail { id: string; } export declare function registerTreeListElement(): CustomElementConstructor | undefined; //# sourceMappingURL=treelist.d.ts.map