import React from 'react'; import { IActionListItem } from './actions'; interface IPreviewPopoverProps { open: boolean; anchorEl: HTMLElement | null; onClose: () => void; actions?: Array; messageId: string; messageAppearanceId?: string; sourceId: string; } export declare const PreviewPopover: (props: IPreviewPopoverProps) => React.JSX.Element; export {};