/** Options for controlling generic encoding behavior. */ export interface GenericOptions { /** When true, disables promotion of fixed-shape nested objects to path * columns (e.g. "customer>name"). Nested objects use attachment syntax * instead. Open-weight models currently comprehend the expanded form * better; this gap is expected to close. */ noFlatten?: boolean; } export declare function encodeGeneric(data: unknown, opts?: GenericOptions): string; //# sourceMappingURL=generic.d.ts.map