import { Model } from 'mongoose';
export interface IAppConfig extends Document {
    _id: string;
    chainId: number;
    isPaused: boolean;
}
export declare const AppConfigModel: Model<IAppConfig>;
