import { FinancialInstrument, Payment, SchemeOption } from "@imburseag/types"; import { FunctionalComponent } from "../../stencil-public-runtime"; import { WalletTab } from "../components/WalletTabs"; interface Props { payments?: Payment[]; selectedOption: SchemeOption | null; updatingSelectedOption?: boolean; onSelectOption?(event: CustomEvent): void; onChooseAnotherOption?(): void; showPaymentMethodSelectionButton: boolean; showTitle?: boolean; selectPaymentMethodText: string; walletEnabled?: boolean; walletActiveTab?: WalletTab; financialInstruments?: FinancialInstrument[]; selectedFinancialInstrument?: FinancialInstrument | null; fiRemovalAllowed?: boolean; actionInProgress?: boolean; submittingWalletForm?: boolean; walletErrorText?: string | null; } declare const Open: FunctionalComponent; export default Open;