import type { ValuesOf } from "../../util/typings.js"; /** Positioning values for {@link Tooltip}. */ export declare const TooltipPositioningOptions: { readonly 'above-start': "block-start span-inline-end"; readonly above: "block-start"; readonly 'above-end': "block-start span-inline-start"; readonly 'below-start': "block-end span-inline-end"; readonly below: "block-end"; readonly 'below-end': "block-end span-inline-start"; readonly 'before-top': "inline-start span-block-end"; readonly before: "inline-start"; readonly 'before-bottom': "inline-start span-block-start"; readonly 'after-top': "inline-end span-block-end"; readonly after: "inline-end"; readonly 'after-bottom': "inline-end span-block-start"; }; /** Type describing positioning options for {@link Tooltip}. */ export type TooltipPositioningOption = ValuesOf; //# sourceMappingURL=tooltip.options.d.ts.map