import { type AppStoreConnectClient } from "../api/client.js"; import type { MetadataManifest } from "./apps-update-metadata.js"; export interface AppsReadMetadataInput { readonly appId: string; readonly platform: "IOS" | "MAC_OS"; readonly version?: string | undefined; readonly outputPath: string; } export interface AppsReadMetadataResult { readonly versionId: string; readonly versionString: string; readonly appStoreState: string; readonly outputPath: string; readonly manifest: MetadataManifest; } export declare function readMetadata(client: AppStoreConnectClient, input: AppsReadMetadataInput): Promise; export declare function appsReadMetadataCommand(client: AppStoreConnectClient, command: { readonly appReference: string; readonly outputPath: string; readonly version?: string | undefined; readonly platform: "IOS" | "MAC_OS"; readonly json: boolean; }): Promise; //# sourceMappingURL=apps-read-metadata.d.ts.map