import type { SuccessResponse } from 'tangem-sdk'; import type { Credential, StoredCredentialsResponse, } from './index'; export type FilesType = { storeCredential: (credential: Credential, fileName: string) => Promise getStoredCredentials: () => Promise; getStoredCredential: (fileName: string) => Promise; deleteStoredCredential: (credentialId: string) => Promise; };