import { CommonsJoinTable, TCommonsJoin } from './commons-join-table'; export declare class CommonsTimestampJoinTable extends CommonsJoinTable { purgeOlderThan(threshold: Date): TCommonsJoin[]; getTimestamp(a: A, b: B): Date | undefined; touch(a: A, b: B): boolean; }