import type { Snippet } from 'svelte'; type $$ComponentProps = { /** File or directory name. */ name: string; /** Force folder styling for an empty directory (folders with children are detected automatically). */ folder?: boolean; /** Emphasize this entry — e.g. the file a guide is about to create. */ highlight?: boolean; /** Nested entries. Their presence marks this item as a folder. */ children?: Snippet; }; declare const FileTreeItem: import("svelte").Component<$$ComponentProps, {}, "">; type FileTreeItem = ReturnType; export default FileTreeItem;