import Service from "../../service"; import Client from "../../client"; import { IRequest } from "../../typings/requestOptions"; import { GrantAccount } from "../../typings/capital/models"; /** * API handler for GrantAccountsApi */ export declare class GrantAccountsApi extends Service { private readonly API_BASEPATH; private baseUrl; constructor(client: Client); /** * @summary Get the information of your grant account * @param id {@link string } The unique identifier of the grant account. * @param requestOptions {@link IRequest.Options } * @return {@link GrantAccount } */ getGrantAccountInformation(id: string, requestOptions?: IRequest.Options): Promise; }