import { DataCollectionType } from "./DataCollectionType";
declare class PaymentMethod {
    /**
    * The data collection types that are supported by the payment method.
    */
    'dataCollectionTypes'?: Array<DataCollectionType>;
    /**
    * The localized description of the object.
    */
    'description'?: {
        [key: string]: string;
    };
    /**
    * A unique identifier for the object.
    */
    'id'?: number;
    /**
    * The path to the payment method's image which is displayed to the customer.
    */
    'imagePath'?: string;
    /**
    *
    */
    'merchantDescription'?: {
        [key: string]: string;
    };
    /**
    * The localized name of the object.
    */
    'name'?: {
        [key: string]: string;
    };
    /**
    * The currencies that are supported by the payment method.
    */
    'supportedCurrencies'?: Array<string>;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { PaymentMethod };
