import { Schema } from 'mongoose';
export interface IOwnerFee extends Document {
    _id: string;
    chainId: number;
    packageIndex: number;
    listingFee: Schema.Types.Decimal128;
    listingReferralFee: Schema.Types.Decimal128;
    buyFeePer: Schema.Types.Decimal128;
    sellFeePer: Schema.Types.Decimal128;
    finalizeFeePer: Schema.Types.Decimal128;
}
export declare const OwnerFeeModel: import('mongoose').Model<any, {}, {}, {}, any, any>;
