import { EventEmitter } from '../../stencil-public-runtime'; export declare class StripeSheet { el: HTMLStripeSheetElement; /** * If true, the modal display close button */ showCloseButton: boolean; /** * Modal state. * If true, the modal will open */ open: boolean; /** * Toggle modal state */ toggleModal(): Promise; /** * Open the modal */ openModal(): Promise; /** * Close the modal */ closeModal(): Promise; /** * */ close: EventEmitter; componentDidLoad(): void; render(): any; }