/** * Given glob pattern, returns first non-wildcard path, rest of glob, and whether there was a leading wildcard */ export declare function splitGlob(glob: string): [string | undefined, string, boolean];