export type AutoOpenPlatform = "darwin" | "linux" | "win32" | "wsl"; export interface AutoOpenResult { attempted: boolean; platform: AutoOpenPlatform; } export declare function detectAutoOpenPlatform(): AutoOpenPlatform; export declare function attemptAutoOpen(url: string | undefined, perCallEnabled: boolean): AutoOpenResult; //# sourceMappingURL=browserOpen.d.ts.map