export declare class Cache {
    static templateMap: Map<any, any>;
    static expressionMap: Map<any, any>;
    static astMap: Map<any, any>;
    static splitMap: Map<any, any>;
    static keyMaps: {
        has(x: any): boolean;
        get(x: any): any;
        set(x: string): any;
        getCreate(x: string): any;
    };
    static clear(): void;
}
