interface ISwaggerSetup { app: any; prefix: string; title?: string; description?: string; version?: string; path?: string; } export declare const setupSwagger: ({ app, prefix, title, description, version, path, }: ISwaggerSetup) => void; export {};