import { ITeachingBubbleProps, Target } from 'office-ui-fabric-react'; import React, { ReactNode } from 'react'; export interface IMultiStepTeachingBubbleProps { /** * titles of the steps */ titles: string[]; details: ReactNode[]; initialPage?: number; /** * Tab Index **/ tabIndex?: number; targets: Target[]; onDismiss: ITeachingBubbleProps['onDismiss']; className?: string; didShowPage?: (page: number) => void; } declare const MultiStepTeachingBubble: React.FunctionComponent; export { MultiStepTeachingBubble };