export declare function hasGlobChars(value: string): boolean; /** Strip wrapping quotes and normalize `"dir"*.ext` / `dir*.ext` forms. */ export declare function normalizeGlobPattern(raw: string): string; /** * If `dir*.mp4` and `dir` is an existing directory, treat as `dir/*.mp4`. */ export declare function coerceDirectoryGlob(pattern: string): Promise; /** * Expand a local glob (basename wildcards in one directory) to absolute file paths. * Non-glob patterns return a single unresolved path string (caller validates). */ export declare function expandGlobPattern(raw: string): Promise;