export interface IClaimableCredentialProps { CreatedAt: string; CredentialOfferRequestToken?: string; DraftVCId?: string; IssuerId: string; VCName: string; checked?: boolean; credentialId?: string; verified?: boolean; id?: string; selfDeclared?: boolean; Status?: string; } export interface IProps { onPress?: () => void; credential: IClaimableCredentialProps; active?: boolean; onSelect?: () => void; } export type ClaimableVCType = { offerResponseToken?: string; userId?: string; draftVCId?: string; issuerId?: string; };