import { TdLinkProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    content: {
        type: PropType<TdLinkProps['content']>;
    };
    default: {
        type: PropType<TdLinkProps['default']>;
    };
    disabled: {
        type: BooleanConstructor;
        default: any;
    };
    hover: BooleanConstructor;
    href: {
        type: StringConstructor;
        default: string;
    };
    prefixIcon: {
        type: PropType<TdLinkProps['prefixIcon']>;
    };
    size: {
        type: PropType<TdLinkProps['size']>;
        default: TdLinkProps['size'];
        validator(val: TdLinkProps['size']): boolean;
    };
    suffixIcon: {
        type: PropType<TdLinkProps['suffixIcon']>;
    };
    target: {
        type: StringConstructor;
        default: string;
    };
    theme: {
        type: PropType<TdLinkProps['theme']>;
        default: TdLinkProps['theme'];
        validator(val: TdLinkProps['theme']): boolean;
    };
    underline: BooleanConstructor;
    onClick: PropType<TdLinkProps['onClick']>;
};
export default _default;
