import { HTMLInteButtonElement } from "../form/Button"; export default class PopConfirm extends HTMLElement { static get observedAttributes(): string[]; $container: HTMLDivElement; $message: HTMLDivElement; $form: HTMLDivElement; $cancel: HTMLInteButtonElement; $ok: HTMLInteButtonElement; $slot: HTMLSlotElement; $style: HTMLStyleElement; mousePosition: { x: number; y: number; }; constructor(); attributeChangedCallback(name: string, oldValue: string, newValue: string): void; okHandler(f: any): void; open(): void; close(): void; getClickPosition(e: any): void; }