export interface BrowserValidationResult { valid: boolean; browserPath: string; browserName?: string; version?: string; error?: string; } export declare class BrowserValidationService { private readonly chromiumIdentifiers; validateBrowser(browserPath: string): Promise; private fileExists; private isExecutable; private getVersionInfo; private getVersionInfoFromApp; private isChromiumBased; private parseVersionInfo; }