export interface ScheduledJobOwner { ownerType: string; ownerId: string; ownerMemberId: string | null; } type OwnedJob = T & { ownerKey: string; }; export declare function ownerKeyFor(job: ScheduledJobOwner): string; export declare function withOwnerKeys(claimed: { now: Date; jobs: T[]; }): { now: Date; jobs: Array>; }; export {};