import type { OutputAsset, OutputChunk } from 'rollup';
import type { RuntimeEntryType } from '../../compiler/index.js';
interface RuntimeCandidateBundleEntry {
    file: string;
    output: OutputAsset | OutputChunk;
    type: RuntimeEntryType;
}
export declare function isRuntimeCandidateBundleEntry(entry: RuntimeCandidateBundleEntry): boolean;
export {};
