import {CliKey} from "./CliKey"; interface CliKeyStore { save(key : CliKey) : Promise; find(id : string) : Promise; listFor(userId : string) : Promise>; delete(id : string, userId : string) : Promise; } export { CliKeyStore }