export interface ITourData { title: string; content: string; image?: string; video?: string; } export interface ITour { data: ITourData[]; show: boolean; onHide(): void; onComplete?(): void; } export declare function Tour(props: ITour): JSX.Element;