import { BaseRecord, TagsBase } from "@credo-ts/core"; //#region src/repository/OpenBadgesConsentRecord.d.ts type DefaultOpenBadgesConsentTags = { clientId: string; subject: string; }; type OpenBadgesConsentRecordProps = { id?: string; createdAt?: Date; updatedAt?: Date; clientId: string; subject: string; grantedAt: Date; tags?: TagsBase; }; declare class OpenBadgesConsentRecord extends BaseRecord implements OpenBadgesConsentRecordProps { clientId: string; subject: string; grantedAt: Date; static readonly type = "OpenBadgesConsentRecord"; readonly type = "OpenBadgesConsentRecord"; constructor(props: OpenBadgesConsentRecordProps); getTags(): DefaultOpenBadgesConsentTags; } //#endregion export { DefaultOpenBadgesConsentTags, OpenBadgesConsentRecord, OpenBadgesConsentRecordProps }; //# sourceMappingURL=OpenBadgesConsentRecord.d.mts.map