export default interface DbRepository { getAnswer(): Promise; findLastContact(phone: string): Promise; findLastMsg(phone: string): Promise<{ msg: string; step:string, contextId: string }>; findGreetMessage(): Promise; saveRecord({msg, phone, contextId}:{msg:string, phone:string, contextId:string}):Promise }