import { ICallout, ICalloutProps } from "./types";
/**
 * Callout Positions
 */
export declare const CalloutPositions: {
    left: string;
    right: string;
    top: string;
    bottom: string;
};
/**
 * Callout Types
 */
export declare enum CalloutTypes {
    /** Action */
    Action = 0,
    /** Close */
    Close = 1,
    /** Default */
    Default = 2,
    /** Out of the Box */
    OOBE = 3,
    /** Peek */
    Peek = 4
}
/**
 * Callout
 */
export declare const Callout: (props: ICalloutProps) => ICallout;
