import { PropOptions } from "vue";
export declare class Property implements PropOptions {
    type: {
        new (): any;
    };
    required: boolean;
    default: any;
    constructor(type: new () => any);
    constructor(options: PropOptions);
    setValue(value: any): void;
}
