export let configs: {
    jest: typeof import("./configs/jest").jest;
    babel: typeof import("./configs/babel").babel;
};
export let babelCore: typeof import("@babel/core");
export let utils: {
    removeUndesiredFontFamily: (pathToFolder: any) => Promise<void>;
    jsonPatcher: ({ file, buildTarget }: {
        file: any;
        buildTarget?: string;
    }) => any;
    buildUi: typeof import("./utils/build-ui");
    initFeatureRegistry: (featureFlagConfigMapPath?: string) => {
        isPluginServerFeatureEnabled: ({ featureName }: {
            featureName: any;
        }) => boolean;
        isPluginUserFeatureEnabled: ({ featureName }: {
            featureName: any;
        }, connection: any) => boolean;
    };
    toInstrument: typeof import("./utils/to-instrument");
};
