import type { FilterType } from "./types.js"; export interface TreeNodeLite { type: "dir" | "file"; name: string; relPath: string; size?: number; hasChildren?: boolean; } export interface TreeChildrenOptions { root: string; rel?: string; filter?: FilterType; exclude?: string | string[]; } export declare function listTreeChildren(opts: TreeChildrenOptions): Promise<{ rootAbs: string; rel: string; nodes: TreeNodeLite[]; }>; //# sourceMappingURL=tree-children.d.ts.map