import { SchemeOption } from "@imburseag/types"; export declare class PaymentModuleHeader { /** * Currently selected scheme option. */ option: SchemeOption; /** * Whether to show the back/select button. */ showPaymentMethodSelectionButton: boolean; /** * Whether an action is currently in progress and interactions should be disabled. */ actionInProgress: boolean; /** * Event handler for choosing another option. */ private chooseAnotherOption; private handleBackClick; render(): any; }