import * as react_jsx_runtime2 from "react/jsx-runtime"; //#region src/Tooltip/Qtip.d.ts /** * QTip * * QTip is a Singleton Tooltip component that guarantees high-performance and reduces component wrappers! * * QTip is used by all qomponents that support the display of tooltips. * If you want to add a Tooltip to your application you can do so by adding the following html data-attributes: * * 'data-qtip-text': the tooltip text to display; this can also be a string containing valid HTML * 'data-qtip-placement': one of TooltipPosition (top, bottom, right, or left) * 'data-qtip-is-html': set this to true if you provided a text that contains HTML, * 'data-qtip-delay': this can be used to delay the showing of the tooltip. this should be a number representing * the # of milliseconds you want to delay the tooltip for. If no delay is provided the DEFAULT_TOOL_TIP_DELAY is * applied! * 'data-qtip-testid': use this attribute to provide a value for a data-testid of your tooltip; this is useful * for tests * * In order for QTip to be able to display Tooltips you must add the QTip component to your top-most component * (often that's App or Application) - simply add: * * * * and enjoy beautiful & performant tooltips! */ declare const QTip: () => react_jsx_runtime2.JSX.Element; //#endregion export { QTip };