import { type Oas3SecurityScheme, type Oas3SecurityRequirement, type Oas3PathItem, type Oas3_1Schema, type Oas3Operation, type ArazzoDefinition } from '@redocly/openapi-core'; import { type Workflow } from '../../types.js'; export type WorkflowsFromDescriptionInput = { descriptionPaths: { [name: string]: Oas3PathItem & { connect?: Oas3Operation; }; }; sourceDescriptionName: string; rootSecurity: Oas3SecurityRequirement[]; inputsComponents: NonNullable; securitySchemes: Record; }; export declare function generateWorkflowsFromDescription({ descriptionPaths, sourceDescriptionName, rootSecurity, inputsComponents, securitySchemes, }: WorkflowsFromDescriptionInput): Workflow[]; //# sourceMappingURL=generate-workflows-from-description.d.ts.map