import { PropType } from 'vue';
import type { Type } from './interface';
export declare const Props: {
    readonly type: {
        readonly type: PropType<Type>;
        readonly default: () => Type;
        readonly validator: (v: Type) => boolean;
    };
    readonly prohibit: BooleanConstructor;
    readonly url: StringConstructor;
    readonly underline: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly target: StringConstructor;
    readonly icon: StringConstructor;
};
