import { YAMLMap } from 'yaml'; /** * Type guard to check if a node is a YAML map (object). * * @param node - The node to check. * @returns True if the node is a YAMLMap. */ export declare function isYAMLMap(node: unknown): node is YAMLMap;