@fluentui/react
Version:
Reusable React components for building web experiences.
12 lines (11 loc) • 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>;