import { Amount } from "./amount";
import { CapitalBalance } from "./capitalBalance";
import { Fee } from "./fee";
import { GrantCounterparty } from "./grantCounterparty";
import { Repayment } from "./repayment";
export declare class CapitalGrant {
    "amount"?: Amount | null;
    "balances": CapitalBalance;
    "counterparty"?: GrantCounterparty | null;
    "fee"?: Fee | null;
    /**
    * The identifier of the grant account used for the grant.
    */
    "grantAccountId": string;
    /**
    * The identifier of the grant offer that has been selected and from which the grant details will be used.
    */
    "grantOfferId": string;
    /**
    * The identifier of the grant reference.
    */
    "id": string;
    "repayment"?: Repayment | null;
    /**
    * The current status of the grant. Possible values: **Pending**, **Active**, **Repaid**, **WrittenOff**, **Failed**, **Revoked**.
    */
    "status": CapitalGrant.StatusEnum;
    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();
}
export declare namespace CapitalGrant {
    enum StatusEnum {
        Pending = "Pending",
        Active = "Active",
        Repaid = "Repaid",
        Failed = "Failed",
        WrittenOff = "WrittenOff",
        Revoked = "Revoked"
    }
}
