import { Knex } from 'knex'; /** * Schedules a future refresh of entities, by so called "refresh keys" that may * be associated with one or more entities. Note that this does not mean that * the refresh happens immediately, but rather that their scheduling time gets * moved up the queue and will get picked up eventually by the regular * processing loop. */ export declare function refreshByRefreshKeys(options: { tx: Knex.Transaction; keys: string[]; }): Promise;