export interface SimpleConfig {
    apiKey?: string;
    country?: string;
    format?: 'raw' | 'json';
    method?: 'GET' | 'POST';
    data_format?: 'markdown' | 'screenshot';
}
export declare const DEFAULT_CONFIG: SimpleConfig;
