import { ComputedRef } from 'vue'; import { ButtonPropsTypes } from '../types'; type UseButtonAttributes = (props: ButtonPropsTypes) => ComputedRef<{ 'aria-disabled': boolean; disabled: boolean; type?: any; tabindex?: number; target?: string; href?: any; to?: string | Record; replace?: boolean; append?: boolean; activeClass?: string; exact?: boolean; exactActiveClass?: string; }>; export declare const useButtonAttributes: UseButtonAttributes; export {};