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