interface BundlerPluginShape {
    readonly enforce: "pre";
    readonly name: string;
    load?(id: string): string | null;
    resolveId?(source: string): string | null;
}
/** Removes development-only lazy sandbox preparation from every hosted runtime bundle. */
export declare function createDevelopmentRuntimePrunePlugin(): BundlerPluginShape;
export {};
