/** * SampleDataRow helpers — sole clear authority for seed packs. */ import type { SampleDataRowRecord } from './types.js'; import { SAMPLE_DATA_ROW_ENTITY } from './types.js'; export { SAMPLE_DATA_ROW_ENTITY }; export declare function buildSampleDataRowId(tenantId: string, packId: string, version: string, entity: string, seedKey: string): string; export declare function toSampleDataRowRecord(input: { tenantId: string; packId: string; version: string; entity: string; seedKey: string; instanceId: string; }): SampleDataRowRecord; export declare function matchesPackRun(row: SampleDataRowRecord, tenantId: string, packId?: string, version?: string): boolean; //# sourceMappingURL=sample-data-row.d.ts.map