import React from 'react'; interface FloatingPortalProps { open: boolean; anchorRef: React.RefObject; placement: 'top' | 'bottom'; children: React.ReactNode; className?: string; offset?: number; matchWidth?: boolean; } export declare const FloatingPortal: React.FC; export {};