import Call from '../Call';
export declare type GetDiagnosticsPayload = {
    location: string;
    retries?: number;
    retryInterval?: number;
    startTime?: Date;
    stopTime?: Date;
};
export default class GetDiagnostics extends Call {
    payload?: GetDiagnosticsPayload | undefined;
    constructor(payload?: GetDiagnosticsPayload | undefined);
}
