export declare class PaymentInstrument {
    /**
    * The description of the resource.
    */
    "description"?: string;
    /**
    * The unique identifier of the resource.
    */
    "id"?: string;
    /**
    * The reference for the resource.
    */
    "reference"?: string;
    /**
    * The type of wallet that the network token is associated with.
    */
    "tokenType"?: 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();
}
