type ConfigPrimitive = string | number | boolean; type ConfigValue = ConfigPrimitive | ConfigPrimitive[] | ConfigObject | ConfigObject[]; export interface ConfigObject { [key: string]: ConfigValue; } export interface SecretObject { [key: string]: unknown; } declare const loadConfig: (configPath?: string) => ConfigObject; declare const _default: ConfigObject; export default _default; export { loadConfig };