'use client'; import { z } from "zod"; //#region src/optimizer/dump.d.ts declare const ExportedQuery: z.ZodObject<{ username: z.ZodString; query: z.ZodString; meanTime: z.ZodNumber; calls: z.ZodCoercedString; rows: z.ZodCoercedString; topLevel: z.ZodBoolean; }, z.core.$strip>; type ExportedQuery = z.infer; declare const CombinedExport: z.ZodObject<{ queries: z.ZodPipe; rows: z.ZodCoercedString; topLevel: z.ZodBoolean; }, z.core.$strip>>>, z.ZodTransform<{ username: string; query: string; meanTime: number; calls: string; rows: string; topLevel: boolean; }[], { username: string; query: string; meanTime: number; calls: string; rows: string; topLevel: boolean; }[] | null>>; stats: z.ZodArray; columns: z.ZodDefault; dataType: z.ZodOptional; stats: z.ZodNullable; stadistinct: z.ZodNumber; stanullfrac: z.ZodNumber; stakind1: z.ZodNumber; stakind2: z.ZodNumber; stakind3: z.ZodNumber; stakind4: z.ZodNumber; stakind5: z.ZodNumber; staop1: z.ZodString; staop2: z.ZodString; staop3: z.ZodString; staop4: z.ZodString; staop5: z.ZodString; stacoll1: z.ZodString; stacoll2: z.ZodString; stacoll3: z.ZodString; stacoll4: z.ZodString; stacoll5: z.ZodString; stanumbers1: z.ZodNullable>; stanumbers2: z.ZodNullable>; stanumbers3: z.ZodNullable>; stanumbers4: z.ZodNullable>; stanumbers5: z.ZodNullable>; stavalues1: z.ZodNullable>; stavalues2: z.ZodNullable>; stavalues3: z.ZodNullable>; stavalues4: z.ZodNullable>; stavalues5: z.ZodNullable>; }, z.core.$strip>>; }, z.core.$strip>>>; indexes: z.ZodArray; relpages: z.ZodNumber; reltuples: z.ZodNumber; relallvisible: z.ZodNumber; relallfrozen: z.ZodOptional; fillfactor: z.ZodDefault; columns: z.ZodDefault; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>]>>; }, z.core.$strip>; type CombinedExport = z.infer; type QuerySource = "pg_stat_statements" | "pg_stat_monitor"; declare function dumpQueriesSql(schema: string, source?: QuerySource): string; declare function combinedDumpSql(schema: string, source?: QuerySource): string; //#endregion export { CombinedExport, ExportedQuery, QuerySource, combinedDumpSql, dumpQueriesSql }; //# sourceMappingURL=dump.d.cts.map