#!/usr/bin/env node export declare function getDefaultConfigPath(): string; export declare function parseConfigFile(configPath: string): Promise; export declare function setupProgram(argv?: readonly string[]): ProgramOptions; interface ProgramOptions { server?: string[]; config?: string; prompt?: string; model?: string; agent?: boolean; eval?: string; chat?: string; system?: string; web?: number | boolean; } export {};