import React from 'react'; import { Position, PosProps, Rect } from './types'; interface ContentProps extends PosProps { children: React.ReactNode; className?: string; style?: React.CSSProperties; active: boolean; sticky: boolean; visible: boolean; position: Position; childBox: Rect; parentBox: Rect; onClickOutside: () => void; } export declare type Ref = HTMLElement; declare const Content: React.ForwardRefExoticComponent>; export default Content;