import type { ComputedRef, Ref, ShallowRef } from 'vue'; export interface UseActionsWidthOptions { toolbarEl: ShallowRef; paginationEl: ShallowRef; checkboxEl: ShallowRef; isPaginationEnabled: ComputedRef | undefined; isSelectable: Ref | undefined; isEmpty: ComputedRef | undefined; } export declare function useActionsWidth(options: UseActionsWidthOptions): { actionsWidth: Ref; updateActionsWidth: () => void; };