import { PropertyMatchType } from './types';
import { SurveyActionType, SurveyEventWithFilters } from './posthog-surveys-types';
import type { InferredSelector } from './extensions/product-tours/element-inference';
import { SurveyPosition } from '@posthog/core';
export interface JSONContent {
    type?: string;
    attrs?: Record<string, any>;
    content?: JSONContent[];
    marks?: {
        type: string;
        attrs?: Record<string, any>;
    }[];
    text?: string;
}
export type ProductTourStepType = 'element' | 'modal' | 'survey' | 'banner';
export interface ProductTourBannerConfig {
    behavior: 'sticky' | 'static' | 'custom';
    selector?: string;
    action?: {
        type: 'none' | 'link' | 'trigger_tour';
        link?: string;
        tourId?: string;
    };
    animation?: {
        duration?: number;
    };
}
/** Button actions available on modal steps */
export type ProductTourButtonAction = 'dismiss' | 'link' | 'next_step' | 'previous_step' | 'trigger_tour';
export interface ProductTourStepButton {
    text: string;
    action: ProductTourButtonAction;
    /** URL to open when action is 'link' */
    link?: string;
    /** Tour ID to trigger when action is 'trigger_tour' */
    tourId?: string;
}
export interface ProductTourStepButtons {
    primary?: ProductTourStepButton;
    secondary?: ProductTourStepButton;
}
export type ProductTourSurveyQuestionType = 'open' | 'rating';
export interface ProductTourSurveyQuestion {
    type: ProductTourSurveyQuestionType;
    questionText: string;
    /** Rating display type - emoji or number */
    display?: 'emoji' | 'number';
    /** Rating scale - 3 or 5 for emoji, 5 or 10 for number */
    scale?: 3 | 5 | 10;
    /** Label for low end of rating scale (e.g., "Not likely") */
    lowerBoundLabel?: string;
    /** Label for high end of rating scale (e.g., "Very likely") */
    upperBoundLabel?: string;
    submitButtonText?: string;
    backButtonText?: string;
}
export interface ProductTourStep {
    id: string;
    type: ProductTourStepType;
    selector?: string;
    progressionTrigger: 'button' | 'click';
    content: JSONContent | null;
    /** Pre-rendered HTML content from the editor. If present, SDK should use this instead of rendering from JSONContent. */
    contentHtml?: string;
    /** Inline survey question config - if present, this is a survey step */
    survey?: ProductTourSurveyQuestion;
    /** ID of the auto-created survey for this step (set by backend) */
    linkedSurveyId?: string;
    /** ID of the survey question (set by backend, used for event tracking) */
    linkedSurveyQuestionId?: string;
    /** Enhanced element data for more reliable lookup at runtime */
    inferenceData?: InferredSelector;
    /** Use CSS selector instead of inference. Defaults to false (use inference). */
    useManualSelector?: boolean;
    /** Maximum tooltip width in pixels (defaults to 320px) */
    maxWidth?: number;
    /** Position for modal/survey steps (defaults to middle_center) */
    modalPosition?: SurveyPosition;
    /** Button configuration for modal steps */
    buttons?: ProductTourStepButtons;
    /** Banner configuration (only for banner steps) */
    bannerConfig?: ProductTourBannerConfig;
    /** translation data for this tour step */
    translations?: Record<string, ProductTourStepTranslation>;
}
/** all translatable content for a given tour step */
export interface ProductTourStepTranslation {
    content?: ProductTourStep['content'];
    contentHtml?: ProductTourStep['contentHtml'];
    buttons?: {
        primary?: Pick<ProductTourStepButton, 'text'>;
        secondary?: Pick<ProductTourStepButton, 'text'>;
    };
    survey?: Pick<ProductTourSurveyQuestion, 'questionText' | 'lowerBoundLabel' | 'upperBoundLabel' | 'submitButtonText' | 'backButtonText'>;
}
export interface ProductTourConditions {
    url?: string;
    urlMatchType?: PropertyMatchType;
    selector?: string;
    autoShowDelaySeconds?: number;
    events?: {
        values: SurveyEventWithFilters[];
    } | null;
    cancelEvents?: {
        values: SurveyEventWithFilters[];
    } | null;
    actions?: {
        values: SurveyActionType[];
    } | null;
    linkedFlagVariant?: string;
}
export interface ProductTourAppearance {
    backgroundColor?: string;
    textColor?: string;
    buttonColor?: string;
    borderRadius?: number;
    buttonBorderRadius?: number;
    borderColor?: string;
    fontFamily?: string;
    boxShadow?: string;
    showOverlay?: boolean;
    whiteLabel?: boolean;
    /** defaults to true, auto-set to false for announcements/banners */
    dismissOnClickOutside?: boolean;
    zIndex?: number;
}
export type ProductTourDisplayFrequency = 'show_once' | 'until_interacted' | 'always';
export interface ProductTour {
    id: string;
    name: string;
    description?: string;
    type: 'product_tour';
    auto_launch?: boolean;
    start_date: string | null;
    end_date: string | null;
    current_iteration?: number;
    conditions?: ProductTourConditions;
    appearance?: ProductTourAppearance;
    steps: ProductTourStep[];
    internal_targeting_flag_key?: string;
    linked_flag_key?: string;
    display_frequency?: ProductTourDisplayFrequency;
    disable_image_preload?: boolean;
}
export type ProductTourCallback = (tours: ProductTour[], context?: {
    isLoaded: boolean;
    error?: string;
}) => void;
export type ProductTourSelectorError = 'not_found' | 'multiple_matches' | 'not_visible';
export type ProductTourDismissReason = 'user_clicked_skip' | 'user_clicked_outside' | 'escape_key' | 'element_unavailable' | 'container_unavailable';
export type ProductTourRenderReason = 'auto' | 'api' | 'trigger' | 'event';
export declare const DEFAULT_PRODUCT_TOUR_APPEARANCE: Required<ProductTourAppearance>;
export interface ShowTourOptions {
    reason?: ProductTourRenderReason;
    enableStrictValidation?: boolean;
}
export declare enum ProductTourEventName {
    SHOWN = "product tour shown",
    DISMISSED = "product tour dismissed",
    COMPLETED = "product tour completed",
    STEP_SHOWN = "product tour step shown",
    STEP_COMPLETED = "product tour step completed",
    BUTTON_CLICKED = "product tour button clicked",
    STEP_SELECTOR_FAILED = "product tour step selector failed",
    BANNER_CONTAINER_SELECTOR_FAILED = "product tour banner container selector failed",
    BANNER_ACTION_CLICKED = "product tour banner action clicked"
}
export declare enum ProductTourEventProperties {
    TOUR_ID = "$product_tour_id",
    TOUR_NAME = "$product_tour_name",
    TOUR_ITERATION = "$product_tour_iteration",
    TOUR_RENDER_REASON = "$product_tour_render_reason",
    TOUR_STEP_ID = "$product_tour_step_id",
    TOUR_STEP_ORDER = "$product_tour_step_order",
    TOUR_STEP_TYPE = "$product_tour_step_type",
    TOUR_DISMISS_REASON = "$product_tour_dismiss_reason",
    TOUR_BUTTON_TEXT = "$product_tour_button_text",
    TOUR_BUTTON_ACTION = "$product_tour_button_action",
    TOUR_BUTTON_LINK = "$product_tour_button_link",
    TOUR_BUTTON_TOUR_ID = "$product_tour_button_tour_id",
    TOUR_STEPS_COUNT = "$product_tour_steps_count",
    TOUR_STEP_SELECTOR = "$product_tour_step_selector",
    TOUR_STEP_SELECTOR_FOUND = "$product_tour_step_selector_found",
    TOUR_STEP_ELEMENT_TAG = "$product_tour_step_element_tag",
    TOUR_STEP_ELEMENT_ID = "$product_tour_step_element_id",
    TOUR_STEP_ELEMENT_CLASSES = "$product_tour_step_element_classes",
    TOUR_STEP_ELEMENT_TEXT = "$product_tour_step_element_text",
    TOUR_ERROR = "$product_tour_error",
    TOUR_MATCHES_COUNT = "$product_tour_matches_count",
    TOUR_FAILURE_PHASE = "$product_tour_failure_phase",
    TOUR_WAITED_FOR_ELEMENT = "$product_tour_waited_for_element",
    TOUR_WAIT_DURATION_MS = "$product_tour_wait_duration_ms",
    TOUR_BANNER_SELECTOR = "$product_tour_banner_selector",
    TOUR_LINKED_SURVEY_ID = "$product_tour_linked_survey_id",
    USE_MANUAL_SELECTOR = "$use_manual_selector",
    INFERENCE_DATA_PRESENT = "$inference_data_present"
}
