import type { UfoExperience } from './types'; export declare const startUfoExperience: ({ name, metadata }: UfoExperience, id: string) => void; export declare const succeedUfoExperience: ({ name, metadata }: UfoExperience, id: string) => void; export declare const failUfoExperience: ({ name, metadata }: UfoExperience, id: string) => void; export declare const addMetadataToExperience: ({ name, metadata }: UfoExperience, id: string) => void;