import { type LogLevel } from '@unchainedshop/logger'; export interface IBaseAdapter { key: string; label: string; version: string; asString: () => string; log: (message: string, options?: { level?: LogLevel; [x: string]: any; }) => void; } export declare const BaseAdapter: Omit;