import { default as React } from 'react'; export interface FloatingPanelProps { /** Panel content */ children: React.ReactNode; /** Panel title */ title?: string; /** Initial position */ position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'; /** Collapsible */ collapsible?: boolean; /** Initially collapsed */ defaultCollapsed?: boolean; /** Close button */ closeable?: boolean; /** Close handler */ onClose?: () => void; /** Additional className */ className?: string; } /** * FloatingPanel Component * * Floating panel that stays fixed on screen. * Useful for chat widgets, help panels, or notifications. * * @example * ```tsx * * * * ``` */ export declare const FloatingPanel: React.FC; //# sourceMappingURL=floating-panel.d.ts.map