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