import { Ref } from 'vue'; export declare function useTableExpand(expandable: Ref): { isExpanded: (id: string) => boolean; toggleExpand: (id: string) => void; };