import { Base, Type } from "./type";
import { CodeGenerationLibraryItem } from "./CodeGenerationLibraryItem";
/**
 * @hidden
 */
export declare class CodeGenerationLibrary extends Base {
    static $t: Type;
    private f;
    private e;
    static fromJson(a: string): CodeGenerationLibrary;
    toJson(): string;
    hasItem(a: string): boolean;
    getKeys(): string[];
    getItem(a: string): CodeGenerationLibraryItem;
}
