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