import type { Formatter, FormatterName } from './types'; /** Registry of built-in JSON formatters, keyed by `LOG_FORMAT` value. */ export declare const formatters: Record; /** Resolve a formatter by `LOG_FORMAT` name, falling back to GoogleCloudLogging. */ export declare function resolveFormatter(name?: FormatterName): Formatter;