import type { LeaperConfig } from '../types.js'; export interface ChannelConfig { type: 'telegram' | 'web' | 'cli'; port?: number; token?: string; } export interface SearchConfig { googleApiKey?: string; googleCxId?: string; braveApiKey?: string; } export interface LeaperConfigFull extends LeaperConfig { channels?: ChannelConfig[]; proxy?: string; search?: SearchConfig; } export declare function loadConfig(dir: string): LeaperConfigFull; //# sourceMappingURL=config.d.ts.map