export interface DecodedRef { entity: string; /** PK values come back as strings; caller coerces back to number/etc. per metadata. */ pkValues: string[]; } export declare function encodeRef(entity: string, record: Record, pkFields: string[]): string; export declare function decodeRef(refString: string): DecodedRef; //# sourceMappingURL=ref-codec.d.ts.map