export declare class PaymentIcon { /** * The name of the payment option, used to locate the corresponding image. */ name: string; /** * The description of the payment option, used for the image alt attribute. */ description: string; /** * Whether this icon is for the selected payment option. * If true, a different CSS class is applied for styling. */ selected: boolean; render(): any; }