/** * Recently-used lookup memory. * * Mainstream record pickers (Salesforce, Dataverse, SAP, ServiceNow) surface * the user's recently-picked records the moment a lookup is focused — before * any typing. We approximate that with a small per-object ring of the last few * selected record ids, kept in localStorage (no backend dependency). When a * recent-items API later exists, this module is the single seam to swap. */ /** Most-recent-first list of record ids previously chosen for `objectName`. */ export declare function getRecentLookupIds(objectName: string): Array; /** Record that `id` was just chosen for `objectName` (moves it to the front). */ export declare function pushRecentLookupId(objectName: string, id: string | number | null | undefined): void;