/** * Simple YAML-like serializer for plain JS values. * Handles: string, number, boolean, null/undefined, arrays, plain objects. * Falls back to String() for unsupported types. * Internal helper — not exported from the package. */ export declare function toYamlLike(data: unknown, indent?: number): string;