import { HttpClient } from "../../http/client";
import { GetMyProfile } from "./protocols/get-my.protocol";
export declare class Profiles {
    private readonly httpClient;
    constructor(httpClient: HttpClient);
    getMy(options?: GetMyProfile.Options): Promise<GetMyProfile.Response>;
}
