export type NoriConfig = { username?: string | null; password?: string | null; refreshToken?: string | null; organizationUrl?: string | null; }; export declare class ConfigManager { static loadConfig: () => NoriConfig | null; static isConfigured: () => boolean; } export declare const apiRequest: (args: { path: string; method?: "GET" | "POST" | "PUT" | "DELETE"; body?: any; queryParams?: Record; retries?: number | null; }) => Promise; //# sourceMappingURL=base.d.ts.map