import type { MatcherStream } from "./patterns/matcherStream.js"; import type { ScanOptions } from "./types.js"; export type * 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. * @returns A stream containing the scan results. * * @since 0.6.0 */ export declare function scanStream(options: ScanOptions): MatcherStream;