import type { SwaggerConfig } from './types'; export declare const GREEN = "#07c160"; export declare const CWD: string; export declare const ROOT: string; export declare const SWAGGER_CONFIG_FILE: string; export declare const PACKAGE_JSON_FILE: string; export declare const PACKAGE_DIR: string; export declare const DOC_DIR: string; export declare const TSCONFIG_FILE: string; export declare function getPackageJson(): any; export declare function getSwaggerConfig(): Promise<{ info: { title: string; version: any; }; compilerOptions: { rootDir: string; include: string[]; outputFileName: string; }; devServer: { port: number; path: string; }; } & SwaggerConfig>;