interface BaserowConfig { projectName?: string; url?: string; token?: string; tokenType?: 'JWT' | 'Token'; refreshToken?: string; databaseId?: string; outputPath?: string; tables?: string[]; } /** * Get configuration from .baserowrc.jsonc file */ export declare function getConfig(): Promise; /** * Get a specific configuration value */ export declare function getConfigValue(key: string): Promise; /** * Set a configuration value */ export declare function setConfigValue(key: string, value: any): Promise; export {};