UNPKG

bits-ui

Version:

The headless components for Svelte.

8 lines (7 loc) 344 B
import type { PopperLayerImplProps } from "./types.js"; type $$ComponentProps = Omit<PopperLayerImplProps, "open"> & { enabled: boolean; }; declare const PopperLayerForceMount: import("svelte").Component<$$ComponentProps, {}, "">; type PopperLayerForceMount = ReturnType<typeof PopperLayerForceMount>; export default PopperLayerForceMount;