export interface SessionNameParams { sessionKey: string; name: string; } export interface SessionNameResult { /** Number of Conversation nodes whose name was updated. Zero on a webchat * pre-flush turn — the Conversation node has not been created yet * (deferred persistence). */ affected: number; } export declare function sessionName(params: SessionNameParams): Promise; //# sourceMappingURL=session-name.d.ts.map