/** * LineageEntry - tipo puro * * @remarks * El core semántico solo preserva linaje estructural. * Notes libres son para observabilidad (SDK), no core. */ export type LineageEntry = { readonly step: string; readonly timestamp: number; }; /** * Crea un LineageEntry - función pura * * @remarks * El core solo registra step y timestamp. * Notes y metadata van en el SDK para observabilidad. */ export declare function createLineageEntry(step: string, timestamp: number): LineageEntry; //# sourceMappingURL=LineageEntry.d.ts.map