export type Pattern = string; export interface Asset { type: string; href: string; } export interface Entry { files: T[]; headers: any[]; } export type FileMap = Record; export type Manifest = Record>; declare function rmanifest(contents: FileMap | Manifest, uri: string, withCommons?: boolean): Entry; export default rmanifest;