import type { InkTheme } from "../render/ink-theme.js"; export interface ContextLimitEditorState { readonly editing: boolean; readonly draft: string; } export declare function contextLimitEditorLabel(ink: InkTheme, state: ContextLimitEditorState, width: number): string; export declare function contextLimitInput(value: string): number | undefined | null;