/// <reference types="react" />
import { IStyle } from '../../../Styling';
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
export interface ICoachmarkBasicExampleState {
    isVisible?: boolean;
    isCoachmarkCollapsed?: boolean;
    targetElement?: HTMLElement;
}
export interface ICoachmarkBasicExampleStyles {
    /**
     * Style for the root element in the default enabled/unchecked state.
     */
    root?: IStyle;
    /**
     * The example button container
     */
    buttonContainer: IStyle;
}
export declare class CoachmarkBasicExample extends BaseComponent<{}, ICoachmarkBasicExampleState> {
    private _targetButton;
    constructor(props: {});
    render(): JSX.Element;
    private _onShowMenuClicked();
    private _onCalloutDismiss();
}
