import type { AutomationInvocationResult } from "../automation/index.js"; export interface InvokeConfiguredAutomationWorkflowInput { readonly workflowId: string; readonly input: Record; readonly idempotencyKey?: string; } /** * Invoke an app-registered automation action without hand-writing a browser * request. Apps may choose a custom action name when registering the runtime. */ export declare function invokeConfiguredAutomationWorkflow(input: InvokeConfiguredAutomationWorkflowInput, options?: { readonly actionName?: string; }): Promise; //# sourceMappingURL=automation.d.ts.map