import type { ForwardRefExoticComponent } from "react"; import { type FloatingPanelProps } from "./floating-panel"; export type { FloatingPanelThemeVars } from "./floating-panel.shared"; interface FloatingPanelInterface extends ForwardRefExoticComponent { (props: FloatingPanelProps): JSX.Element; } declare const FloatingPanel: FloatingPanelInterface; export default FloatingPanel;