/** * System handler functions * * Handles export_library, get_project_info, get_quota, set_quota_tier, and cleanup_data tools. */ import type { HandlerContext } from "./types.js"; import type { ToolResult } from "../../types.js"; export declare function handleExportLibrary(ctx: HandlerContext, args: { format?: "json" | "csv"; output_path?: string; }): Promise>; export declare function handleGetProjectInfo(ctx: HandlerContext): Promise>; export declare function handleGetQuota(ctx: HandlerContext, args?: { sync?: boolean; }): Promise>; export declare function handleSetQuotaTier(_ctx: HandlerContext, args: { tier: "free" | "pro" | "ultra"; }): Promise>; export declare function handleCleanupData(_ctx: HandlerContext, args: { confirm: boolean; preserve_library?: boolean; }): Promise; totalPaths: number; totalSizeBytes: number; }; result?: { deletedPaths: string[]; failedPaths: string[]; totalSizeBytes: number; categorySummary: Record; }; }>>;