/** * Input parameters for the playground workflow */ type PlaygroundInput = { /** @description Name of the function/activity to execute */ functionName: string; /** @description Task queue identifier for routing */ taskQueue: string; /** @description Input data to pass to the function - can be any type */ input: any; }; type PlaygroundOutput = any; /** * Default playground workflow for testing and development * @description Executes a single activity function with the provided input parameters * @param functionName - The name of the activity function to call * @param taskQueue - The task queue to route the activity to * @param input - The input data to pass to the activity function * @returns The result from the executed activity function */ export declare function playgroundRun({ functionName, taskQueue, input, }: PlaygroundInput): Promise; export {};