7bd857d4cdc46b3400d46244aa37299a0ec6ebdd5b295659c343d56e92c07592e4f6e2556d4cbd1f7298fd264728e2f3e4b2ada1ef12cb2434c35349410398 356 B

123456789101112
  1. import type Quill from '../core.js';
  2. import type { Bounds } from '../core/selection.js';
  3. declare class Tooltip {
  4. quill: Quill;
  5. boundsContainer: HTMLElement;
  6. root: HTMLDivElement;
  7. constructor(quill: Quill, boundsContainer?: HTMLElement);
  8. hide(): void;
  9. position(reference: Bounds): number;
  10. show(): void;
  11. }
  12. export default Tooltip;