import { BaseRecord, TagsBase } from "@credo-ts/core"; //#region src/repository/OpenBadgesRevocationCacheRecord.d.ts type DefaultOpenBadgesRevocationCacheTags = { statusListUrl: string; }; type OpenBadgesRevocationCacheRecordProps = { id?: string; createdAt?: Date; updatedAt?: Date; statusListUrl: string; lastUpdatedAt?: Date; bitstringBase64?: string; tags?: TagsBase; }; declare class OpenBadgesRevocationCacheRecord extends BaseRecord implements OpenBadgesRevocationCacheRecordProps { statusListUrl: string; lastUpdatedAt?: Date; bitstringBase64?: string; static readonly type = "OpenBadgesRevocationCacheRecord"; readonly type = "OpenBadgesRevocationCacheRecord"; constructor(props: OpenBadgesRevocationCacheRecordProps); getTags(): DefaultOpenBadgesRevocationCacheTags; } //#endregion export { DefaultOpenBadgesRevocationCacheTags, OpenBadgesRevocationCacheRecord, OpenBadgesRevocationCacheRecordProps }; //# sourceMappingURL=OpenBadgesRevocationCacheRecord.d.mts.map