import { BrowserAgentResult } from "@empiricalrun/cua"; import { Usage } from "@empiricalrun/shared-types/chat-agent"; type GenerateTestsType = { testCaseName: string; testCaseSuites: string[]; testFilePath: string; filePathToUpdate: string; projectName: string; testGenToken: string; repoDir: string; traceId?: string; editFileWithGeneratedCode: boolean; envOverrides: Record; }; export declare function convertProjectsFilterToProject({ pwProjectsFilter, repoDir, testFilePath, }: { pwProjectsFilter: string[]; repoDir: string; testFilePath: string; }): Promise; export declare function runBrowsingAgent({ testCaseName, testCaseSuites, testFilePath, filePathToUpdate, projectName, testGenToken, repoDir, traceId, editFileWithGeneratedCode, envOverrides, }: GenerateTestsType): Promise<{ isError: boolean; error: string; result: BrowserAgentResult | undefined; usage: Usage | undefined; }>; export {}; //# sourceMappingURL=run.d.ts.map