import { ThemeInterface } from "../../interfaces/swagger/themes/ThemeInterface";
import Core from "./Core";
export default class SwaggerInformationCore implements Core {
    private constructor();
    private static instance;
    static getInstance(): SwaggerInformationCore;
    private mappedApi;
    private security;
    private theme;
    private swaggerConfig;
    private swaggerEndpoint;
    setTheme(theme: ThemeInterface): void;
    setSwaggerEndpoint(swaggerEndpoint: string): void;
    setSecurity(newSecurity: any): void;
    cleanObjects(): void;
    getObjectConfig(): any;
}
