import type { StyleType } from '@boost/cli'; export interface FileTree { files?: string[]; folders?: Record; } export interface TreeProps { depth?: boolean[]; tree: FileTree; style?: StyleType; } export declare function Tree({ depth, tree, style }: TreeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tree.d.ts.map