import type { OAuth2Client } from 'google-auth-library'; export type StepState = 'done' | 'pending' | 'blocked'; export interface PlanStep { state: StepState; title: string; detail?: string; tool?: string; irreversible?: boolean; } export declare function buildPlayStoreReleasePlan(opts: { auth: OAuth2Client; packageName: string; versionCode?: string; track: 'production' | 'beta' | 'alpha' | 'internal'; language: string; }): Promise; export declare function buildAppStoreReleasePlan(opts: { appId: string; versionString?: string; }): Promise;