import { ShopperStatement } from './shopperStatement';
export declare class UpdatePaymentMethodInfo {
    /**
    * The list of countries where a payment method is available. By default, all countries supported by the payment method.
    */
    'countries'?: Array<string>;
    /**
    * The list of currencies that a payment method supports. By default, all currencies supported by the payment method.
    */
    'currencies'?: Array<string>;
    /**
    * Custom routing flags for acquirer routing.
    */
    'customRoutingFlags'?: Array<string>;
    /**
    * Indicates whether the payment method is enabled (**true**) or disabled (**false**).
    */
    'enabled'?: boolean;
    'shopperStatement'?: ShopperStatement;
    /**
    * The list of stores for this payment method
    */
    'storeIds'?: Array<string>;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
