import type { IActivityHandler } from "../../IActivityHandler"; export interface SqlNonQueryInputs { providerName: "Microsoft SQL Server" | "MySQL" | "ODBC" | "Oracle" | "SQLite" | string; connectionString: string; connectionConfigName: string; commandText: string; parameters: object; commandTimeout: number; } /** Defines outputs from the SqlNonQuery activity. */ export interface SqlNonQueryOutputs { /** @description The number of rows affected by the SQL command. */ rowsAffected: number; } export declare class SqlNonQuery implements IActivityHandler { static readonly action = "gcx:wf:server::SqlNonQuery"; static readonly suite = "gcx:wf:builtin"; execute(inputs: SqlNonQueryInputs): SqlNonQueryOutputs; }