import { Schema } from 'koishi';
import { FortuneInfo, LevelInfo, RollEvent } from '../data/types';
export interface Config {
    imgUrl: string;
    signExp: number[];
    signCoin: number[];
    currency: string;
    levelSet: LevelInfo[];
    fortuneSet: FortuneInfo[];
    event: RollEvent[];
}
export declare const Config: Schema<Config>;
