import * as $dara from '@darabonba/typescript'; import { CreateFlowInput } from "./CreateFlowInput"; export declare class CreateFlowRequest extends $dara.Model { /** * @remarks * Complete configuration information required to create a workflow, including the workflow name, definition, and execution role. * * This parameter is required. */ body?: CreateFlowInput; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }