/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface WalletLocation
 */
export interface WalletLocation {
    /**
     *
     * @type {string}
     * @memberof WalletLocation
     */
    type: WalletLocationTypeEnum;
    /**
     * The id of the wallet.
     * @type {string}
     * @memberof WalletLocation
     */
    id: string;
}
export declare const WalletLocationTypeEnum: {
    readonly Wallet: "wallet";
};
export declare type WalletLocationTypeEnum = typeof WalletLocationTypeEnum[keyof typeof WalletLocationTypeEnum];
