import type { Compiler, RspackPluginInstance } from '@rspack/core';
interface ExpoModulesPluginOptions {
    /**
     * Target application platform (e.g. `ios`, `android`).
     *
     * By default, the platform is inferred from `compiler.options.name` which is set by Re.Pack.
     */
    platform?: string;
}
export declare class ExpoModulesPlugin implements RspackPluginInstance {
    private options;
    constructor(options?: ExpoModulesPluginOptions);
    apply(compiler: Compiler): void;
}
export {};
