export type IDebugLogType = 'error' | 'warning' | 'info'; export declare const printDebugLog: (isDebugMode: boolean, message: string, type: IDebugLogType, error?: unknown) => void;