import { ISignService } from "./types";
export declare class RequestService {
    protected readonly signService: ISignService;
    protected readonly hostname = "api.apple-cloudkit.com";
    protected readonly port = 443;
    constructor(signService: ISignService);
    makeRequest<T>(requestPath: string, payload: string): Promise<T>;
}
