import { FabrixModel as Model } from '@fabrix/fabrix/dist/common';
import { SequelizeResolver } from '@fabrix/spool-sequelize';
export declare class VendorUploadResolver extends SequelizeResolver {
    batch(options: any, batch: any): any;
}
export declare class VendorUpload extends Model {
    static readonly resolver: typeof VendorUploadResolver;
    static config(app: any, Sequelize: any): {
        options: {
            underscored: boolean;
        };
    };
    static schema(app: any, Sequelize: any): {
        upload_id: {
            type: any;
        };
        handle: {
            type: any;
            allowNull: boolean;
            set: (val: any) => void;
        };
        name: {
            type: any;
            set: (val: any) => void;
        };
        shipping_address_1: {
            type: any;
        };
        shipping_address_2: {
            type: any;
        };
        shipping_address_3: {
            type: any;
        };
        shipping_company: {
            type: any;
        };
        shipping_city: {
            type: any;
        };
        shipping_province: {
            type: any;
        };
        shipping_country: {
            type: any;
        };
        shipping_postal_code: {
            type: any;
        };
        billing_address_1: {
            type: any;
        };
        billing_address_2: {
            type: any;
        };
        billing_address_3: {
            type: any;
        };
        billing_company: {
            type: any;
        };
        billing_city: {
            type: any;
        };
        billing_province: {
            type: any;
        };
        billing_country: {
            type: any;
        };
        billing_postal_code: {
            type: any;
        };
        products: {
            type: any;
            defaultValue: any[];
        };
    };
}
