import Service from "../../service"; import Client from "../../client"; import { IRequest } from "../../typings/requestOptions"; import { GrantOffer } from "../../typings/capital/models"; import { GrantOffers } from "../../typings/capital/models"; /** * API handler for GrantOffersApi */ export declare class GrantOffersApi extends Service { private readonly API_BASEPATH; private baseUrl; constructor(client: Client); /** * @summary Get all available grant offers * @param requestOptions {@link IRequest.Options } * @param accountHolderId {@link string } The unique identifier of the account holder for which you want to get the available grant offers. * @return {@link GrantOffers } */ getAllGrantOffers(accountHolderId?: string, requestOptions?: IRequest.Options): Promise; /** * @summary Get the details of a grant offer * @param id {@link string } The unique identifier of the grant offer. * @param requestOptions {@link IRequest.Options } * @return {@link GrantOffer } */ getGrantOffer(id: string, requestOptions?: IRequest.Options): Promise; }