12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
import * as React from 'react';
|
|
import type { ICoachmarkProps } from './Coachmark.types';
|
|
export declare const COACHMARK_ATTRIBUTE_NAME = "data-coachmarkid";
|
|
/**
|
|
* An interface for the cached dimensions of entity inner host.
|
|
*/
|
|
export interface IEntityRect {
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
export declare const CoachmarkBase: React.FunctionComponent<ICoachmarkProps>;
|