export declare class Factory {
    private static _components;
    private static _functions;
    private static _cellTypes;
    static registerComponent(key: string, component: any): void;
    static getComponent(key: string): any;
    static registerFunction(key: string, func: any): void;
    static getFunction(key: string): any;
    static registerCellType(key: string, cellType: any): void;
    static getCellType(key: string): any;
}
