import type { CreateComponentDoc } from "../../types/CreateComponentDoc"; type Position = "top" | "bottom" | "left" | "right"; export type Popup = CreateComponentDoc<"popup", { properties: { show: boolean; zIndex?: number; position?: Position; overlay?: boolean; duration?: number; round?: boolean; customStyle?: string; overlayStyle?: string; closeOnClickOverlay?: boolean; closeable?: boolean; closeIcon?: string; safeAreaInsetBottom?: boolean; safeAreaInsetTop?: boolean; lockScroll?: boolean; }; customEvents: { clickOverlay: null; close: null; }; }>; export {};