import type { RefreshToken } from '@atproto/oauth-provider/store'; import type { AccountDb } from '../db/index.js'; /** * Note that the used refresh tokens will be removed once the token is revoked. * This is done through the foreign key constraint in the database. */ export declare const insertQB: (db: AccountDb, tokenId: number, refreshToken: RefreshToken) => import("kysely").InsertQueryBuilder; export declare const findByTokenQB: (db: AccountDb, refreshToken: RefreshToken) => import("kysely").SelectQueryBuilder; export declare const countQB: (db: AccountDb, refreshToken: RefreshToken) => import("kysely").SelectQueryBuilder; //# sourceMappingURL=used-refresh-token.d.ts.map