import { type HandleAspectsProps } from '../../hooks/useAspects/handleAspects'; import { type Aspects } from '../../hooks/useAspects/useAspects'; import { type AspectsDef } from '../../model/AspectsProps'; import { type HeadlineCommonProps } from '../../model/HeadlineType'; import { type Picture } from '../../model/Picture'; import { type LinkButtonContent } from '../LinkButton/LinkButtonContent'; import { type RichTextProps } from '../RichText/RichTextProps'; export interface SnowplowPopupDialogContent extends HeadlineCommonProps, RichTextProps { img?: Picture; buttons?: LinkButtonContent[]; dataShow?: AspectsDef[]; dataClose?: AspectsDef[]; delay?: number; } export interface SnowplowPopupDialogProps extends SnowplowPopupDialogContent { onClose?: () => void; aspects: Aspects; handleAspects: (props: HandleAspectsProps) => void; } export declare const SnowplowPopupDialog: import("@redneckz/uni-jsx").UNIComponent;