import { GrantInfoCounterparty } from "./grantInfoCounterparty"; export declare class GrantInfo { "counterparty"?: GrantInfoCounterparty | null; /** * The unique identifier of the grant account that tracks this grant. */ "grantAccountId": string; /** * The unique identifier of the selected grant offer. Adyen uses the details of the selected grant offer to create a grant. */ "grantOfferId": string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }