/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { SessionController } from "../../../app/controllers/session-controller.js"; import type { ContextUsageSnapshot } from "../../../llm/token-usage.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function ContextLimitChip(props: { chip: string; theme: Theme; exact: boolean; usage: ContextUsageSnapshot; session: SessionController; onEditingStart?: (() => void) | undefined; onEditingDone?: (() => void) | undefined; }): ReactNode;