/**
 * Stealth configuration and platform detection for cloakbrowser.
 * Mirrors Python cloakbrowser/config.py.
 */
declare let WRAPPER_VERSION: string;
export { WRAPPER_VERSION };
export declare const CHROMIUM_VERSION = "146.0.7680.177.5";
export declare const PLATFORM_CHROMIUM_VERSIONS: Record<string, string>;
export declare function getChromiumVersion(): string;
export declare function getPlatformTag(): string;
export declare function getCacheDir(): string;
export declare function getBinaryDir(version?: string): string;
export declare function getBinaryPath(version?: string): string;
export declare function checkPlatformAvailable(): void;
export declare const DOWNLOAD_BASE_URL: string;
export declare const GITHUB_API_URL = "https://api.github.com/repos/CloakHQ/cloakbrowser/releases";
export declare const GITHUB_DOWNLOAD_BASE_URL = "https://github.com/CloakHQ/cloakbrowser/releases/download";
export declare function getArchiveExt(): string;
export declare function getArchiveName(tag?: string): string;
export declare function getDownloadUrl(version?: string): string;
export declare function getFallbackDownloadUrl(version?: string): string;
export declare function getEffectiveVersion(): string;
export declare function parseVersion(v: string): number[];
export declare function versionNewer(a: string, b: string): boolean;
export declare function getLocalBinaryOverride(): string | undefined;
export declare const IGNORE_DEFAULT_ARGS: string[];
export declare const DEFAULT_VIEWPORT: {
    width: number;
    height: number;
};
export declare function getDefaultStealthArgs(): string[];
//# sourceMappingURL=config.d.ts.map