import type { Component } from "svelte"; export interface FolderNodeItem { id: string; name: string; categoryId?: string | null; parentId?: string | null; order?: number; } export declare const FolderNode: Component;