import type { Ref } from 'vue'; /** * Returns a computed boolean indicating whether the textContent is truncated. * * @param textContent {Ref} ref to the element to detect truncation on. * * @returns {isTruncated: Ref} ref to a boolean indicating whether the textContent is truncated. */ export default function useTruncationDetector(textContent: Ref): { isTruncated: import("vue").ComputedRef; }; //# sourceMappingURL=useTruncationDetector.d.ts.map