/**
 * Type guard to validate a logger implements the Logger interface.
 */
import { Logger } from "../types/fmconfig-types.js";
export declare const isValidLogger: (obj: any) => obj is Logger;
