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<Oas3_1Schema> & {
            connect?: Oas3Operation<Oas3_1Schema>;
        };
    };
    sourceDescriptionName: string;
    rootSecurity: Oas3SecurityRequirement[];
    inputsComponents: NonNullable<ArazzoDefinition['components']>;
    securitySchemes: Record<string, Oas3SecurityScheme>;
};
export declare function generateWorkflowsFromDescription({ descriptionPaths, sourceDescriptionName, rootSecurity, inputsComponents, securitySchemes, }: WorkflowsFromDescriptionInput): Workflow[];
//# sourceMappingURL=generate-workflows-from-description.d.ts.map