import { FC } from 'react'; export interface DynamicPopoverProps { popoverSetting: { page?: { pageId: string; options?: Record[]; placement: string; trigger: string; pagePath?: string; }; options?: { content: any; maxWidth: number; [key: string]: any; }; }; childProps: any; appId: string; onAppPopoverClick?: any; parseNodeBefore: any; lcdpParentRenderId: string; api: any; uid: string; } declare const DynamicPopover: FC; export default DynamicPopover;