export interface MetabaseCredentials { url: string; apiKey: string; } /** * Parse a multi-field credential value into typed Metabase fields. * Uses the shared decodeCredentialPayload() which handles both * base64 (injection path) and raw JSON (validator path). */ export declare function parseMetabaseCredential(value: string): MetabaseCredentials; /** * Enhance Metabase API error messages with helpful hints */ export declare function enhanceMetabaseErrorMessage(error: string, statusCode?: number): string; //# sourceMappingURL=metabase.utils.d.ts.map