export interface IRouteContext {
    target: string | boolean | null;
    intent?: string | null;
    utterance?: string | null;
    params?: Record<string, any> | null;
    shared?: Record<string, any> | null;
}
export interface IRouteContextTarget extends IRouteContext {
    target: string | null;
}
