import { TdAnchorItemProps } from '../anchor/type';
import { PropType } from 'vue';
declare const _default: {
    href: {
        type: StringConstructor;
        default: string;
        required: boolean;
    };
    target: {
        type: PropType<TdAnchorItemProps["target"]>;
        default: TdAnchorItemProps["target"];
        validator(val: TdAnchorItemProps["target"]): boolean;
    };
    title: {
        type: PropType<TdAnchorItemProps["title"]>;
        default: string;
    };
    customScroll: {
        type: BooleanConstructor;
        default: boolean;
    };
};
export default _default;
