import type { IosAppConfig } from './app-config.js'; export declare const TARGET_NAME = "Game"; export declare const PAYLOAD_DIR_NAME = "GamePayload"; export declare const URL_SCHEME = "bmapp"; /** The Info.plist orientation array for the project's declaration (§6). */ export declare function orientationValues(orientation: 'portrait' | 'landscape' | undefined): string[]; /** * Write the whole project (everything except the payload contents and the icon PNG, which have * their own producers). Existing files are overwritten — the project is CLI-owned. */ export declare function stampXcodeProject(projectDir: string, config: IosAppConfig): void;