/** * SyncMode is the per-resource update strategy for taps that support one * (today: attio objects/lists). "rescan" (default) re-reads the full set * every sync — the only way edits are seen on APIs with no updated_at. * "new_only" bounds each scan to the sync window and stops paging at its * floor — cheap, and an explicit opt-in to not seeing edits until * webhooks land. Stored in the resource's filters and carried to the tap * on every window. */ export declare const HandlerResourceMappingSyncMode: { readonly Rescan: "rescan"; readonly NewOnly: "new_only"; }; export type HandlerResourceMappingSyncMode = (typeof HandlerResourceMappingSyncMode)[keyof typeof HandlerResourceMappingSyncMode];