export declare class Factory {
    private static _pluginClasses;
    static registerPlugin(pluginKey: string, pluginClass: any): void;
    static getPlugin(pluginKey: string): any;
}
export { FACTORY_STATE_SYMBOL, getFactoryState } from './factory-state';
export type { IFactoryState } from './factory-state';
export * from './factory/index';
