/** Shape of the typia transform plugin's stdout JSON payload. */ export interface ITypiaTransformOutput { diagnostics?: unknown; typescript: Record; } /** * Parse the typia transform plugin's stdout into the expected shape. Returns * null on any parse / shape mismatch — the caller treats null as "transform * produced no usable output". */ export declare function safeParseTypiaTransform(text: string): ITypiaTransformOutput | null;