import { EventEmitter } from '../../stencil-public-runtime'; export declare class StripeModal { el: HTMLStripeModalElement; /** * If true, the modal display close button */ showCloseButton: boolean; /** * Modal state. * If true, the modal will open */ open: boolean; /** * Effect `this.open`. This is for animation. * Ionic Ref: https://github.com/ionic-team/ionic-framework/blob/main/core/src/components/accordion/accordion.tsx#L83 */ renderedOpen: boolean; /** * Toggle modal state */ toggleModal(): Promise; /** * Open the modal */ openModal(): Promise; /** * Close the modal */ closeModal(): Promise; /** * */ close: EventEmitter; componentDidLoad(): void; private openModalAnimation; render(): any; }