import { Schema, Model } from 'mongoose';
export interface ISubBoardFee extends Document {
    chainId: number;
    subBoardCreationFee: Schema.Types.Decimal128;
    listingFeePerForOwner: Schema.Types.Decimal128;
    tradingFeePerForOwner: Schema.Types.Decimal128;
    finalizeFeePerForOwner: Schema.Types.Decimal128;
}
export declare const SubBoardFeeModel: Model<ISubBoardFee>;
