/** Function that will scope the typescript import and return FixedBuildTypeOptions */
export declare function getFixedBuildTypeOptions(root: string): {
    ui: {
        noEmit: boolean;
        skipLibCheck: boolean;
        target: import("typescript").ScriptTarget;
    };
    functions: {
        noEmit: boolean;
        skipLibCheck: boolean;
        target: import("typescript").ScriptTarget;
    };
    actions: {
        noEmit: boolean;
        skipLibCheck: boolean;
        target: import("typescript").ScriptTarget;
    };
    widgets: {
        noEmit: boolean;
        skipLibCheck: boolean;
        target: import("typescript").ScriptTarget;
    };
};
