/** Maximum length of a single input line from stdin (before Enter). */ export declare const MAX_INPUT_BUFFER_CHARS = 100000; /** Maximum size of a single paste operation (prevents OOM from 10MB paste). */ export declare const MAX_PASTE_CHARS = 50000; /** Maximum length of a single history entry text payload. */ export declare const MAX_ENTRY_TEXT_CHARS = 500000; /** Maximum entries in the history array (matches history-retention.ts). */ export declare const MAX_HISTORY_ENTRIES = 400; /** Maximum actions in a fleetBatch dispatch (prevents render-thrashing). */ export declare const MAX_BATCHED_ACTIONS = 500; /** Maximum length of a single action payload string field. */ export declare const MAX_ACTION_STRING_FIELD = 10000; /** Maximum subagents tracked in fleet state. */ export declare const MAX_FLEET_ENTRIES = 200; /** Maximum tools tracked per-subagent. */ export declare const MAX_RECENT_TOOLS = 100; /** Maximum messages tracked per-subagent. */ export declare const MAX_RECENT_MESSAGES = 50; /** Maximum depth of nested action payload objects. */ export declare const MAX_ACTION_DEPTH = 8; /** Maximum characters in a paste fragment (single stdin chunk). */ export declare const MAX_PASTE_FRAGMENT_CHARS = 100000; /** Maximum length for any host-provided string (model, provider, etc). */ export declare const MAX_HOST_STRING_FIELD = 500; /** Maximum entries in a picker matches list. */ export declare const MAX_PICKER_MATCHES = 500; //# sourceMappingURL=limits.d.ts.map