export declare class PlaywrightConfig { projectName: string; configFilePath: string; platform: string; testDir: string; snapshotDir: string; testMatch: Set; snapshotTemplates: Set; browsers: Set; projects?: PlaywrightProject[]; files: Set; constructor(filePath: string, playwrightConfig: any); getBrowsers(): string[]; getSnapshotPath(filePath: string): string[]; } export declare class PlaywrightProject { projectName: string; platform: string; testDir: string; snapshotDir: string; testMatch: Set; expect: any; snapshotTemplates: Set; browsers: Set; constructor(dir: string, playwrightConfig: any, playwrightProject: any); getSnapshotPath(filePath: string): string[]; }