/** Literal glob matching without regular-expression backtracking. Compilation is * shared by all names in a manifest. The general case takes O(pattern × value) * time and O(value) space; literal patterns need no matching buffers. */ export declare function literalGlob(pattern: string, options?: { pathPrefix?: boolean; questionMark?: boolean; }): (value: string) => boolean; //# sourceMappingURL=literal-glob.d.ts.map