import { FabrixModel as Model } from '@fabrix/fabrix/dist/common';
import { SequelizeResolver } from '@fabrix/spool-sequelize';
export declare class ProductReview extends Model {
    static readonly resolver: typeof SequelizeResolver;
    static config(app: any, Sequelize: any): {
        options: {
            underscored: boolean;
            classMethods: {};
        };
    };
    static schema(app: any, Sequelize: any): {
        customer_id: {
            type: any;
        };
        user_id: {
            type: any;
        };
        product_id: {
            type: any;
        };
        variant_id: {
            type: any;
        };
        metadata_id: {
            type: any;
        };
        score: {
            type: any;
            defaultValue: number;
        };
        review: {
            type: any;
        };
        live_mode: {
            type: any;
            defaultValue: any;
        };
    };
    static associate(models: any): void;
}
export interface ProductReview {
    resolveMetadata(app: any, options: any): any;
}
