import type { Key } from '../components/interface'; import type { Ref } from 'vue'; export default function useUpdateHeight(rowSpan: Ref, rowKey: Ref, subKey: Ref, domRef: Ref, uniId: string, dynamicHeight?: Ref): { handleHeightResize: (e: CustomEvent) => void; };