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 discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
