import React, { PropsWithChildren } from 'react'; /** * Properties for an entity popover on hover of a component. * * @public */ export type EntityPeekAheadPopoverProps = PropsWithChildren<{ entityRef: string; delayTime?: number; }>; /** * Shows an entity popover on hover of a component. * * @public */ export declare const EntityPeekAheadPopover: (props: EntityPeekAheadPopoverProps) => React.JSX.Element;