import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; options?: Options; fit?: boolean; getElement?: () => HTMLElement; }; events: { close: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type PopupProps = typeof __propDef.props; export declare type PopupEvents = typeof __propDef.events; export declare type PopupSlots = typeof __propDef.slots; export default class Popup extends SvelteComponentTyped { get getElement(): () => HTMLElement; } export {};