import type { PeekOptions } from '../types';
/**
 * YAML peek: parse with js-yaml then delegate to the JSON peeker so `--index`,
 * `--descriptions-only`, $ref follow etc. all work uniformly.
 */
export declare function peekYaml(file: string, name: string | undefined, opts: PeekOptions): void;
