/** Backup section, document and import-report response schemas. */ import { z } from 'zod'; export declare const backupSections: z.ZodArray>; /** The exported backup document — validated when the UI reads a picked file. */ export declare const backupDocument: z.ZodObject<{ version: z.ZodLiteral<1>; created_at: z.ZodString; sections: z.ZodRecord; errors: z.ZodOptional>; }, z.core.$strip>; export type BackupDocument = z.infer; export declare const backupImportReport: z.ZodObject<{ ok: z.ZodBoolean; sections: z.ZodRecord; new_api_keys: z.ZodOptional>>; fanout: z.ZodOptional; note: z.ZodString; }, z.core.$strip>, z.ZodObject<{ op: z.ZodString; reachable: z.ZodBoolean; local_only: z.ZodBoolean; results: z.ZodArray; payload: z.ZodType>; error: z.ZodNullable; detail: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; mode: z.ZodLiteral<"fleet">; }, z.core.$strip>, z.ZodObject<{ op: z.ZodString; reachable: z.ZodBoolean; local_only: z.ZodBoolean; results: z.ZodArray; payload: z.ZodType>; error: z.ZodNullable; detail: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; mode: z.ZodLiteral<"unreachable">; }, z.core.$strip>], "mode">>; }, z.core.$strip>>; }, z.core.$strip>; export type BackupImportReport = z.infer; //# sourceMappingURL=backup.d.ts.map