import React from 'react'; import type { Theme } from '../../theme.js'; /** * A pane — a region below the prompt bounded by a colored top line with a * one-row gap above and horizontal padding (ported from the leak's * design-system/Pane.tsx). Used by the slash-command dialogs (/thinking, * /model, /resume). * * @example * ... */ export declare function Pane({ children, color, }: { children: React.ReactNode; /** Theme color for the top border line. */ color?: keyof Theme; }): React.ReactNode; //# sourceMappingURL=Pane.d.ts.map