#!/usr/bin/env node import type { RenderOptions } from "./types.js"; type CliArgs = Partial & { in?: string; out?: string; help?: boolean; }; /** * Ignore EPIPE when downstream (e.g., `head`) closes early. */ export declare function handleStdoutEpipe(): void; /** * Parse CLI arguments into RenderOptions-ish object (plus in/out paths). */ export declare function parseArgs(argv: string[]): CliArgs; export declare function isDirectCliInvocation(metaUrl: string, argv1?: string): boolean; export {};