import { Logger } from '../logger.js'; import { BaseProfileManager } from './profile-manager.js'; export declare class ChromeProfileManager extends BaseProfileManager { constructor(logger: Logger); protected getProfileStoragePath(profileId: string): string; protected exportProfileData(profileId: string, targetPath: string): Promise; protected importProfileData(sourcePath: string, profileId: string): Promise; getProfilePath(profileId: string): Promise; createDefaultProfile(): Promise; }