import { snowflake } from "../app.mjs"; import { AppAction } from "@keystrokehq/keystroke/app"; import { z } from "zod"; //#region src/actions/cancel-statement-execution.d.ts declare const SnowflakeCancelStatementExecutionInput: z.ZodObject<{ request_id: z.ZodOptional; statementHandle: z.ZodString; }, z.core.$strip>; declare const SnowflakeCancelStatementExecutionOutput: z.ZodObject<{ code: z.ZodNullable; message: z.ZodNullable; sqlState: z.ZodNullable; statementHandle: z.ZodNullable; statementStatusUrl: z.ZodNullable; }, z.core.$loose>; declare const snowflakeCancelStatementExecution: AppAction; //#endregion export { snowflakeCancelStatementExecution }; //# sourceMappingURL=cancel-statement-execution.d.mts.map