import React from 'react'; import { Property } from 'csstype'; export type PopoverProps = { onRequestToClose: () => void; children: React.ReactNode; height?: Property.Height; offset?: [number, number]; renderContent: () => React.ReactNode; testID?: string; visible: boolean; width?: Property.Width; zIndex?: number; }; declare const Popover: ({ onRequestToClose, children, height, offset, renderContent, testID, visible, width, zIndex, }: PopoverProps) => React.JSX.Element; export default Popover;