import { FabrixModel as Model } from '@fabrix/fabrix/dist/common';
import { SequelizeResolver } from '@fabrix/spool-sequelize';
export declare class ProductReviewUploadResolver extends SequelizeResolver {
    batch(options: any, batch: any): any;
}
export declare class ProductReviewUpload extends Model {
    static readonly resolver: typeof ProductReviewUploadResolver;
    static config(app: any, Sequelize: any): {
        options: {
            underscored: boolean;
        };
    };
    static schema(app: any, Sequelize: any): {
        upload_id: {
            type: any;
            allowNull: boolean;
        };
        product_handle: {
            type: any;
            allowNull: boolean;
            set: (val: any) => void;
        };
        product_sku: {
            type: any;
            allowNull: boolean;
            set: (val: any) => void;
        };
        email: {
            type: any;
        };
        review: {
            type: any;
        };
        score: {
            type: any;
        };
        live_mode: {
            type: any;
            defaultValue: any;
        };
    };
    static associate(models: any): void;
}
