import { TdLinkProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    content: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    default: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    disabled: {
        type: BooleanConstructor;
        default: any;
    };
    download: {
        type: PropType<string | boolean>;
    };
    hover: {
        type: PropType<"color" | "underline">;
        default: "color" | "underline";
        validator(val: TdLinkProps['hover']): boolean;
    };
    href: {
        type: StringConstructor;
        default: string;
    };
    prefixIcon: {
        type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
    };
    size: {
        type: PropType<import("..").SizeEnum>;
        default: import("..").SizeEnum;
        validator(val: TdLinkProps['size']): boolean;
    };
    suffixIcon: {
        type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
    };
    target: {
        type: StringConstructor;
        default: string;
    };
    theme: {
        type: PropType<"default" | "success" | "primary" | "warning" | "danger">;
        default: "default" | "success" | "primary" | "warning" | "danger";
        validator(val: TdLinkProps['theme']): boolean;
    };
    underline: BooleanConstructor;
    onClick: PropType<(e: MouseEvent) => void>;
};
export default _default;
