import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
import { Components } from '@malga-checkout-full/core';
export declare interface MalgaCheckoutFull extends Components.MalgaCheckoutFull {
}
export declare class MalgaCheckoutFull {
    protected z: NgZone;
    /**  */
    transactionSuccess: EventEmitter<CustomEvent<{
        data: unknown;
    }>>;
    /**  */
    transactionFailed: EventEmitter<CustomEvent<{
        error: unknown;
    }>>;
    protected el: HTMLElement;
    constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
}
