import type { ComputedRef } from 'vue'; interface Params { excludeListeners?: boolean; excludeKeys?: ComputedRef; } export declare const useAttrs: (params?: Params) => ComputedRef>; export {};