import { ScanResult } from '../types/scan-result'; /** * Recursively scans a directory for all YAML files and classifies them as * workflows or composite actions. * * @param rootPath - The root path of the repository. * @param directory - The directory to scan recursively, relative to rootPath. * @returns A promise that resolves to a ScanResult. */ export declare function scanRecursive(rootPath: string, directory: string): Promise;