import type { Reporters } from '@wdio/types';
export interface TestResults {
    status_id: string;
    comment: string;
}
export interface NewTest {
    suite_id: string;
    name?: string;
    include_all: boolean;
}
export interface TestCase {
    case_id: string;
    status_id: string;
    comment: string;
    elapsed?: string;
}
export interface ReporterOptions extends Reporters.Options {
    domain: string;
    projectId: string;
    suiteId: string;
    username: string;
    apiToken: string;
    runName: string;
    existingRunId?: string;
    oneReport: boolean;
    includeAll: boolean;
    useCucumber: boolean;
    caseIdTagPrefix: string;
    timeInMinutes: number;
    logFile?: string;
}
//# sourceMappingURL=types.d.ts.map