import type { ComponentChildren } from 'preact';
import type { AdditionalEventProperties } from '../../core/user-events';
export interface ContextGuidanceProps {
    title: string;
    content: ComponentChildren;
    titleId: string;
    contentId: string;
    trackingParams?: Partial<AdditionalEventProperties>;
    onOpen?: () => void;
    onClose?: () => void;
}
