import { type SyncResponse } from '../generated/psdbconnect_pb'; /** * @description Parses the response from the PlanetScale sync stream */ export declare function parseResponse(res: SyncResponse): { cursor: import(".").TableCursor | undefined; inserts: { table: string; row: Record; }[]; updates: { table: string; before: Record | undefined; after: Record | undefined; }[]; deletes: { table: string; row: Record; }[]; };