import type { BotConfig } from "./types.js"; type WarnState = { warned: boolean; }; export type SessionDefaultsOptions = { warn?: (message: string) => void; warnState?: WarnState; }; export declare function applyMessageDefaults(cfg: BotConfig): BotConfig; export declare function applySessionDefaults(cfg: BotConfig, options?: SessionDefaultsOptions): BotConfig; export declare function applyTalkApiKey(config: BotConfig): BotConfig; export declare function applyTalkConfigNormalization(config: BotConfig): BotConfig; export declare function applyModelDefaults(cfg: BotConfig): BotConfig; export declare function applyAgentDefaults(cfg: BotConfig): BotConfig; export declare function applyLoggingDefaults(cfg: BotConfig): BotConfig; export declare function applyContextPruningDefaults(cfg: BotConfig): BotConfig; export declare function applyCompactionDefaults(cfg: BotConfig): BotConfig; export declare function resetSessionDefaultsWarningForTests(): void; export {};