import { z } from "zod"; //#region src/cli/commands/tailordb/truncate.d.ts export interface TruncateOptions { workspaceId?: string; profile?: string; configPath?: string; all?: boolean; namespace?: string; tables?: string[]; } /** * Truncate TailorDB data based on the given options. * @param options - Truncate options (all, namespace, or tables) * @returns Promise that resolves when truncation completes */ export declare function truncate(options?: TruncateOptions): Promise; //#endregion