import { SvelteComponent } from "svelte"; import type { PortalProps } from "../types.js"; declare const __propDef: { props: PortalProps; events: { [evt: string]: CustomEvent; }; slots: { default: { builder: { 'data-portal': string | undefined; } & { [x: `data-melt-${string}`]: ""; } & { action: (node: HTMLElement) => { destroy(): void; }; }; }; }; }; export type AlertDialogPortalProps = typeof __propDef.props; export type AlertDialogPortalEvents = typeof __propDef.events; export type AlertDialogPortalSlots = typeof __propDef.slots; export default class AlertDialogPortal extends SvelteComponent { } export {};