import { OpenAPIObject } from './openapi-interfaces.js';
export declare function generateSwaggerTypes({ fs, fsPath, swaggerUrl, openApiDocument, }: {
    fs: any;
    fsPath?: string;
    openApiDocument?: OpenAPIObject;
    swaggerUrl?: string;
}): Promise<void>;
