import { IRouteContext } from './IRouteContext';
import { ISession } from './ISession';
export interface IGetResponse {
    session: ISession;
    watsonResponse: Record<string, any>;
    routeNotification: IRouteContext;
}
