import type { MatcherContext } from "./patterns/matcherContext.js"; import type { ScanOptions, FsAdapter } from "./types.js"; /** * Scan the directory for included files based on the provided targets. * * It also normalizes paths to use forward slashes. * * @param options Scan options. * @param cb Callback function. * * @since 0.11.0 */ export declare function scanCb(options: ScanOptions & { fs: FsAdapter; cwd: string; }, cb: (err: Error | null, ctx: MatcherContext) => void): void;