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