import { snowflake } from "../app.cjs"; import { AppAction } from "@keystrokehq/keystroke/app"; import { z } from "zod"; //#region src/actions/show-tables.d.ts declare const SnowflakeShowTablesInput: z.ZodObject<{ role: z.ZodOptional; limit: z.ZodOptional; terse: z.ZodOptional>; schema: z.ZodOptional; history: z.ZodOptional>; timeout: z.ZodOptional; database: z.ZodOptional; in_scope: z.ZodOptional; from_name: z.ZodOptional; warehouse: z.ZodOptional; starts_with: z.ZodOptional; like_pattern: z.ZodOptional; }, z.core.$strip>; declare const SnowflakeShowTablesOutput: z.ZodObject<{ data: z.ZodArray>>>; columns: z.ZodOptional>>; }, z.core.$loose>; declare const snowflakeShowTables: AppAction; //#endregion export { snowflakeShowTables }; //# sourceMappingURL=show-tables.d.cts.map