/**
 * Class PaymentMethodGroupData
 */
export declare class PaymentMethodGroupData {
    /**
     * ID of the group.
     */
    id: string;
    /**
     * Localized name of the group.
     */
    name: string;
    /**
     * URL to PNG version of the group icon.
     */
    icon: string;
    /**
     * URL to SVG version of the group icon. Using the SVG icon is preferred.
     */
    svg: string;
}
