import { Meta2dStore } from '../store';
export declare function queryURLParams(value?: string): {
    [k: string]: string;
};
export declare const getRootDomain: () => string;
export declare function getCookie(name: string): string;
export declare enum TokenType {
    None = 0,
    LocalStorage = 1,
    Cookie = 2
}
export declare function getToken(): any;
export declare function d(str: any): any;
export declare function getMeta2dData(store: Meta2dStore, id: string): Promise<any>;
