import { Schema } from 'koishi';
export interface Config {
    usename: string;
    uid: string;
    password: string;
    roomId: string;
    roomPassword: string;
    oldRoomId?: string;
    signature: string;
    botStatus: string;
    color: string;
    timeout: number;
    keepAliveEnable: boolean;
    onlyHangUpMode: boolean;
    debugMode: boolean;
    fullDebugMode: boolean;
    maxRetries: number;
    deleteMessageDelay: number;
    sessionCacheSize: number;
    refreshTimeout: number;
    smStart?: boolean;
    smPassword?: string;
    smRoom?: string;
    smUsername?: string;
    smImage?: string;
    smColor?: string;
    smGender?: string;
    smst?: string;
    smmo?: string;
    smUid?: string;
    smli?: string;
    smmb?: string;
    smmu?: string;
    smLocation?: string;
    smvc?: string;
}
export declare const Config: Schema<Config>;
