import type { RsbuildPlugin } from '@rsbuild/core';
export interface Options {
    lazy?: boolean | undefined;
    LAYERS: {
        MAIN_THREAD: string;
        BACKGROUND: string;
    };
    rootPath?: string | undefined;
}
export declare function pluginReactAlias(options: Options): RsbuildPlugin;
