type LogType = 'info' | 'warn' | 'error' | 'debug' | 'trace'; /** * Debug logging utility that respects environment debug flags * @param message - The message to log * @param data - Optional data to log alongside the message * @param type - Log level. One of: 'info' | 'warn' | 'error' | 'debug' | 'trace' */ export declare const logIfDebug: (message: string, data?: unknown, type?: LogType) => void; export declare const fetchWithRetry: typeof import("@adaptic/utils/dist/types/misc-utils").fetchWithRetry; export {};