/**
 *
 * @export
 * @interface ExpressCheckoutWalletType
 */
export interface ExpressCheckoutWalletType {
    /**
     * The localized name of the object.
     * @type {{ [key: string]: string; }}
     * @memberof ExpressCheckoutWalletType
     */
    readonly name?: {
        [key: string]: string;
    };
    /**
     * The localized description of the object.
     * @type {{ [key: string]: string; }}
     * @memberof ExpressCheckoutWalletType
     */
    readonly description?: {
        [key: string]: string;
    };
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof ExpressCheckoutWalletType
     */
    readonly id?: number;
}
/**
 * Check if a given object implements the ExpressCheckoutWalletType interface.
 */
export declare function instanceOfExpressCheckoutWalletType(value: object): value is ExpressCheckoutWalletType;
export declare function ExpressCheckoutWalletTypeFromJSON(json: any): ExpressCheckoutWalletType;
export declare function ExpressCheckoutWalletTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressCheckoutWalletType;
export declare function ExpressCheckoutWalletTypeToJSON(json: any): ExpressCheckoutWalletType;
export declare function ExpressCheckoutWalletTypeToJSONTyped(value?: Omit<ExpressCheckoutWalletType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;
