import type { Options } from './types.js'; declare const identity: (value: T) => T; declare const isString: (value: unknown) => value is string; declare const memoizeByObject: (fn: (globs: string[], options?: Options) => T) => (globs: string[], options?: Options) => T; declare const memoizeByPrimitive: (fn: (glob: string, options?: Options) => T) => (glob: string, options?: Options) => T; export { identity, isString, memoizeByObject, memoizeByPrimitive };