import { type CustomData } from '@atlaskit/ufo'; export declare const ufoExperience: { readonly mounted: "component-mounted"; }; type ExperienceType = keyof typeof ufoExperience; type ExperienceName = (typeof ufoExperience)[ExperienceType]; export declare const startUfoExperience: (experienceName: ExperienceName, id: string, metadata?: CustomData) => void; export declare const succeedUfoExperience: (experienceName: ExperienceName, id: string, metadata?: CustomData) => void; export declare const failUfoExperience: (experienceName: ExperienceName, id: string, metadata?: CustomData) => void; export declare const abortUfoExperience: (experienceName: ExperienceName, id: string, metadata?: CustomData) => void; export {};