export declare class OmniaFxBoot {
    private static jsRequests;
    private static cssRequests;
    private static promiseGroup;
    private static debug;
    static addCss: (loadingIdentifier: string, href: string, beforeRequest: () => void) => void;
    static addJs: (loadingIdentifier: string, src: string, beforeRequest: () => void) => void;
    static whenLoaded: (loadingIdentifiers: Array<string>) => Promise<void>;
    static registerForLoading: (omniaServiceId: any, manifestId: any, groupedManifests: any, type: any) => void;
    static processRequests: () => void;
    private static getCookie;
    private static injectCookiesInRequest;
}
