import { snowflake } from "../app.mjs"; import { AppAction } from "@keystrokehq/keystroke/app"; import { z } from "zod"; //#region src/actions/drop-warehouse.d.ts declare const SnowflakeDropWarehouseInput: z.ZodObject<{ name: z.ZodString; if_exists: z.ZodOptional>; }, z.core.$strip>; declare const SnowflakeDropWarehouseOutput: z.ZodObject<{ code: z.ZodOptional>; status: z.ZodOptional>; message: z.ZodOptional>; resultHandler: z.ZodOptional>; }, z.core.$loose>; declare const snowflakeDropWarehouse: AppAction; //#endregion export { snowflakeDropWarehouse }; //# sourceMappingURL=drop-warehouse.d.mts.map