import type { ZephyrOptions } from './convert-status';
import type { PathLike } from 'fs';
export declare class ZephyrService {
    private readonly authorizationToken;
    private readonly projectKey;
    private readonly testCycle;
    private readonly url;
    private readonly defaultRunName;
    constructor(options: ZephyrOptions);
    createRun(testResults: PathLike): Promise<any>;
    printReportDetails(testCycle: {
        key: string;
        url: string;
    }): void;
    handleAxiosError(error: unknown): void;
}
