import type { ValuesOf } from "../../util/typings.js"; /** * The size variations for the teaching bubble component * @public */ export declare const TeachingBubbleSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; /** * The types for teaching bubble size * @public */ export type TeachingBubbleSize = ValuesOf; /** * The placement variations for the teaching bubble component * @public */ export declare const TeachingBubblePlacements: { readonly top: "top"; readonly topStart: "top-start"; readonly topEnd: "top-end"; readonly bottom: "bottom"; readonly bottomStart: "bottom-start"; readonly bottomEnd: "bottom-end"; readonly left: "left"; readonly leftStart: "left-start"; readonly leftEnd: "left-end"; readonly right: "right"; readonly rightStart: "right-start"; readonly rightEnd: "right-end"; }; /** * The types for teaching bubble placement * @public */ export type TeachingBubblePlacement = ValuesOf; /** * TeachingBubble event names * @public */ export declare const TeachingBubbleEventNames: { readonly openChange: "open-change"; readonly dismiss: "dismiss"; }; //# sourceMappingURL=teaching-bubble.options.d.ts.map