import { Association, BelongsToGetAssociationMixin } from 'sequelize';
import { BaseModel } from '../../core/BaseModel';
import { Material } from './Material';
export declare class MaterialPayment extends BaseModel {
    static associations: {
        material: Association<MaterialPayment, Material>;
    };
    id: number;
    mid: number;
    payType: number;
    payment: number;
    platform: number | null;
    createdAt: Date;
    updatedAt: Date;
    deleted: boolean;
    getMaterial: BelongsToGetAssociationMixin<Material>;
}
