import type { RuntimeEntryType } from '../../compiler/index.js';
export interface RuntimeEntryMatchers {
    cssMatcher: (file: string) => boolean;
    htmlMatcher: (file: string) => boolean;
    jsMatcher: (file: string) => boolean;
    wxsMatcher: (file: string) => boolean;
}
export declare function classifyRuntimeEntry(file: string, matchers: RuntimeEntryMatchers): RuntimeEntryType;
