import type { TaskType } from '../stores/globalStore/taskTypes';
/**
 * Hook that automatically sends a "Landed on page" analytic event on task mount & initializes event task type.
 * Used on dropin level (i.e. Business Details, Individual, Business Financing etc.) to track visits.
 * This centralizes the common analytics pattern used across form components.
 */
export declare function useTaskLandedEvent(taskType: TaskType | undefined): void;
