import * as React from 'react';
import { IPlaceholderWithCalloutProps, IPlaceholderWithCalloutState } from './IPlaceholderWithCallout';
/**
 * PlaceholderWithCallout component.
 * Displays a label and a callout
 */
export default class PlaceholderWithCallout extends React.Component<IPlaceholderWithCalloutProps, IPlaceholderWithCalloutState> {
    private _infoIcon;
    constructor(props: IPlaceholderWithCalloutProps, state: IPlaceholderWithCalloutState);
    render(): JSX.Element;
    private _onCalloutDismiss;
    private _onInfoIconMouseOver;
    private _onInfoIconMouseOut;
    private _onInfoIconClick;
}
//# sourceMappingURL=PlaceholderWithCallout.d.ts.map