import { PropType } from "vue"; export declare const buttonProps: { status: { type: StringConstructor; validator: (v: string) => boolean; }; type: { type: StringConstructor; validator: (v: string) => boolean; }; loading: { type: BooleanConstructor; }; disabled: { type: BooleanConstructor; }; onClick: { type: PropType<(...args: any) => any>; default: null; }; color: { type: StringConstructor; }; linkHover: { type: BooleanConstructor; }; };