export declare const OMP_SUPPORTED_VERSION: "17.2.1"; export declare const OMP_PACKAGE_NAME: "@oh-my-pi/pi-coding-agent"; export declare const OMP_BINARY_NAME: "omp"; export declare const OMP_INSTALL_COMMAND: "bun install -g @oh-my-pi/pi-coding-agent@17.2.1"; export declare const OMP_AUTH_INSTRUCTIONS: "omp\n/login"; export declare const OMP_REMEDIATION: "Install the pinned OMP release with `bun install -g @oh-my-pi/pi-coding-agent@17.2.1`, then authenticate OAuth users via `omp\n/login`."; export declare const OMP_RELEASE_DOWNLOAD_BASE_URL: "https://github.com/can1357/oh-my-pi/releases/download/v17.2.1"; export type OmpReleasePlatform = 'darwin-arm64' | 'darwin-x64' | 'linux-arm64' | 'linux-musl-arm64' | 'linux-musl-x64' | 'linux-x64'; export interface OmpReleaseAsset { readonly name: string; readonly platform: OmpReleasePlatform; readonly sha256: string; } export declare const OMP_RELEASE_ASSETS: readonly OmpReleaseAsset[]; export declare function findOmpReleaseAsset(platform: string): OmpReleaseAsset | undefined; export declare function ompReleaseAssetDownloadUrl(asset: OmpReleaseAsset): string; export declare const OMP_DOCKER_PLATFORM: "linux/amd64"; export declare const OMP_DOCKER_RELEASE_PLATFORM: "linux-x64"; export declare const OMP_DOCKER_INSTALL_COMMAND: string; //# sourceMappingURL=release.d.ts.map