import { Settings, SupportedLibraries, TranslateFlags } from '../../types/index.js'; import type { EnqueueFilesResult } from 'generaltranslation/types'; import { FileTranslationData } from '../../workflows/download.js'; import { BranchData } from '../../types/branch.js'; export declare function handleStage(options: TranslateFlags, settings: Settings, library: SupportedLibraries, stage: boolean): Promise<{ fileVersionData: FileTranslationData | undefined; jobData: EnqueueFilesResult | undefined; branchData: BranchData | undefined; publishMap: Map; } | null>;