import { Schema } from 'koishi'; declare const encodings: readonly ["utf8", "utf16le", "latin1", "ucs2"]; export interface Config { root?: string; shell?: string; encoding?: typeof encodings[number]; timeout?: number; debug?: boolean; renderImage?: boolean; exemptUsers?: string[]; blockedCommands?: string[]; restrictDirectory?: boolean; authority?: number; commandFilterMode?: 'blacklist' | 'whitelist'; commandList?: string[]; sudoPassword?: string; } export declare const Config: Schema; export {};