import { DialogPhrase, PreviousDialog } from './previous_dialog.entity'; export interface SessionContinuationProps { previousDialog?: DialogPhrase[]; previousState?: string; } export declare class SessionContinuation { readonly previousDialog: PreviousDialog | undefined; readonly previousState: string | undefined; constructor(props: SessionContinuationProps); }