import { MandateBankAccount } from "./mandateBankAccount";
export declare class Mandate {
    /**
    * The unique identifier of the balance account linked to the payment instrument.
    */
    "balanceAccountId"?: string;
    "counterparty"?: MandateBankAccount | null;
    /**
    * The date when the mandate was created.
    */
    "createdAt"?: Date;
    /**
    * The unique identifier of the mandate.
    */
    "id"?: string;
    /**
    * The unique identifier of the payment instrument linked to the mandate.
    */
    "paymentInstrumentId"?: string;
    /**
    * The status of the mandate.  Possible values: **pending**, **approved**, **cancelled**.
    */
    "status"?: Mandate.StatusEnum;
    /**
    * The type of mandate. Possible value: **bacs**.
    */
    "type"?: Mandate.TypeEnum;
    /**
    * The date when the mandate was updated.
    */
    "updatedAt"?: Date;
    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 Mandate {
    enum StatusEnum {
        Approved = "approved",
        Cancelled = "cancelled",
        Pending = "pending"
    }
    enum TypeEnum {
        Bacs = "bacs"
    }
}
