export declare function replace(file: string, ext: string): string; export declare function replaceAll(file: string, exts: Array): Array; export declare function create(ext: string): string; export declare function matched(file: string, ext: string): boolean; export declare function filter(files: Array, exts: Array): Array; export declare function resolve(entry: string, relative: string, exts: Array): Array; export declare function resolveAll(entry: string, exts: Array): Array; export declare function matchedOne(file: string, exts: Array): boolean; export declare function getMimeType(extension: string): any; export declare const patterns: { all: (ext: string) => string; }; export declare function collectJS(files: Array): Array; export declare function collectTS(files: Array): Array;