import { EventEmitter } from '../../stencil-public-runtime'; import { BatchData, PaymentMethod } from "../../api/transactions/interface"; export declare class PayCargoConfirmationComponent { el: HTMLPaycargoBatchConfirmationElement; /** * Response Array from the approval response. **/ paymentResponseProp: any; /** * Payment Method of transaction approval **/ paymentMethod: PaymentMethod; /** * Show 'New Payment' Btn that will emit * 'newTransaction' event. **/ newTransactionBtn: boolean; capturedPaymentMethod: string; convenienceFeePresent: boolean; dropdown: { hidden: boolean; }; paymentResponse: BatchData; /** *Event that will be called after new transaction button is clicked */ newTransaction: EventEmitter<{}>; private openNewTransaction; private batchTotalTemp; private print; private openDropdown; componentDidRender(): void; componentWillLoad(): void; dataDidChange(newValue: BatchData | string): void; render(): any; }