export declare function getCommonPath(filePath: string | string[]): string; export declare function globify(inputFilePath: string): string | string[]; export declare function globify(inputFilePath: string[]): string[]; export declare function isBinary(filePath: string, newFileContents?: Buffer): boolean | undefined; export type ResolvedFrom = { from: string; resolvedFrom: string; relativeFrom: string; }; export declare function resolveFromPaths({ from, fromBasePath, }: { from: string | string[]; fromBasePath: string; }): ResolvedFrom[]; export declare function resolveGlobOptions({ noGlob, hasGlobOptions, hasDynamicPattern, }: { noGlob?: boolean; hasGlobOptions?: boolean; hasDynamicPattern?: boolean; }): { preferFiles: boolean; };