export interface IIntentRepository { put(instance: IntentInstance): Promise; get(id: string): Promise; } export declare type IntentInstance = { name: string; entities: any; };