/** Classifies a data change by comparing the previous first row id to the new rows. */ export declare const detectDataChange: (prevFirstRowId: string | undefined, rows: { id: string; }[]) => "prepend" | "replace" | "none";