interface logProps { api: any; visible: boolean; pid: string; hosCode?: string; isDiffWithFirstVersion: string; setVisible: any; contrastClick?: (a: any, b: any) => void; } declare const LogPopover: ({ api, hosCode, pid, isDiffWithFirstVersion, visible, setVisible, contrastClick, }: logProps) => JSX.Element; export default LogPopover;