import { Uuid } from '@standardnotes/domain-core' import { KeySystemAssociation } from './KeySystemAssociation' export interface KeySystemAssociationRepositoryInterface { save(keySystem: KeySystemAssociation): Promise remove(keySystem: KeySystemAssociation): Promise findByItemUuid(itemUuid: Uuid): Promise }