import type { PackageFile, PackageUpdate } from '../types'; /** * Check if a file path is a GitHub Actions workflow file */ export declare function isGitHubActionsFile(filePath: string): boolean; /** * Parse a GitHub Actions workflow file to extract action dependencies */ export declare function parseGitHubActionsFile(filePath: string, content: string): Promise; /** * Update action versions in a GitHub Actions workflow file */ export declare function updateGitHubActionsFile(filePath: string, content: string, updates: PackageUpdate[]): Promise; /** * Generate file changes for GitHub Actions workflow files */ export declare function generateGitHubActionsUpdates(updates: PackageUpdate[]): Promise>; /** * Fetch latest version for a GitHub Action from GitHub API */ export declare function fetchLatestActionVersion(actionName: string): Promise;