import { GitHubAction } from '../types/github-action'; /** * Scans a GitHub workflow file for all action references. * * @param filePath - The path to the workflow YAML file to scan. * @returns A promise that resolves to an array of GitHubAction objects found in * the workflow. */ export declare function scanWorkflowFile(filePath: string): Promise;