/** * Adapts `@larksuiteoapi/node-sdk`'s `Logger` interface to xopc's pino-based logger. * * The SDK wraps calls like `this.logger.info('a', 'b')` into `LoggerProxy.info` which forwards a *single* array * argument to the underlying logger — which is why the default output looks like: `[info]: [ 'a', 'b' ]`. */ export declare function createFeishuLarkSdkPinoLogger(accountId: string): { error: (...msg: any[]) => void; warn: (...msg: any[]) => void; info: (...msg: any[]) => void; debug: (...msg: any[]) => void; trace: (...msg: any[]) => void; };