import { ExtractPropTypes } from "vue";
export declare const commentDesignProps: Record<string, any> & {
    customClass: {
        type: StringConstructor;
        default: string;
    };
    editorClass: {
        type: StringConstructor;
        default: string;
    };
    editorStyle: {
        type: StringConstructor;
        default: string;
    };
    editorVisible: {
        type: BooleanConstructor;
        default: boolean;
    };
    listClass: {
        type: StringConstructor;
        default: string;
    };
    listStyle: {
        type: StringConstructor;
        default: string;
    };
    listVisible: {
        type: BooleanConstructor;
        default: boolean;
    };
    visible: {
        type: BooleanConstructor;
        default: boolean;
    };
} & {
    componentId: {
        type: StringConstructor;
        default: string;
    };
};
export type CommentDesignProps = ExtractPropTypes<typeof commentDesignProps>;
export declare const propsDesignResolver: (schemaValue?: Record<string, any>, mergeDefaults?: boolean) => Record<string, any>;
