import type { Config } from '../config/schema.js'; import type { SessionResetConfig, SessionResetType } from './reset-policy.js'; export declare function resolveSessionResetType(params: { isGroup?: boolean; isThread?: boolean; }): SessionResetType; export declare function resolveChannelResetConfig(params: { sessionCfg?: Config['session']; channel?: string | null; }): SessionResetConfig | undefined;