import { snowflake } from "../app.mjs"; import { AppAction } from "@keystrokehq/keystroke/app"; import { z } from "zod"; //#region src/actions/show-databases.d.ts declare const SnowflakeShowDatabasesInput: z.ZodObject<{ role: z.ZodOptional; limit: z.ZodOptional; terse: z.ZodOptional>; history: z.ZodOptional>; timeout: z.ZodOptional; from_name: z.ZodOptional; warehouse: z.ZodOptional; starts_with: z.ZodOptional; like_pattern: z.ZodOptional; }, z.core.$strip>; declare const SnowflakeShowDatabasesOutput: z.ZodObject<{ data: z.ZodArray>>>; columns: z.ZodOptional>>; }, z.core.$loose>; declare const snowflakeShowDatabases: AppAction; //#endregion export { snowflakeShowDatabases }; //# sourceMappingURL=show-databases.d.mts.map