import { PlainObject } from "../types";
type EventSourceConfig = {
    port: number;
    jwt?: PlainObject;
    authn?: {
        jwt?: PlainObject;
    };
    docs?: {
        info: any;
        servers: any[];
    };
};
export declare const generateSwaggerJSON: (events: PlainObject, definitions: PlainObject, eventSourceConfig: EventSourceConfig) => {
    [key: string]: any;
};
export {};
