import Client from "./client";
declare class Service {
    client: Client;
    protected constructor(client: Client);
}
export default Service;
