import { Payment, SchemeOption } from "@imburseag/types"; import "./PaymentModuleHeader"; export declare class NewPaymentMethodSection { /** * The list of available payment options to display */ payments?: Payment[]; /** * The currently selected payment scheme option */ selectedOption: SchemeOption | null; /** * The text to display for payment method selection */ selectPaymentMethodText: string; /** * Indicates whether the selected option is currently being updated */ updatingSelectedOption?: boolean; /** * Controls whether to show the payment method selection button */ showPaymentMethodSelectionButton: boolean; /** * Whether an action is currently in progress and interactions should be disabled. */ actionInProgress: boolean; render(): any; }