import { MaybeRefOrGetter } from 'vue';
import { LinkIconProps, LinkOpacityProps, LinkUnderlineProps, LinkVariantProps } from '../types/ComponentProps';
export declare const useLinkClasses: (linkProps: MaybeRefOrGetter<LinkUnderlineProps & LinkOpacityProps & LinkIconProps & LinkVariantProps>) => import('vue').ComputedRef<{
    [x: string]: boolean;
    "link-underline": boolean;
    'icon-link': boolean;
}>;
