import type { ReactNode } from 'react'; interface ToolContentBoxProps { title: string; icon?: ReactNode; subtitle?: string; copyText?: string; variant?: 'default' | 'error'; maxHeight?: string; children: ReactNode; } export declare function ToolContentBox({ title, icon, subtitle, copyText, variant, maxHeight, children, }: ToolContentBoxProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ToolContentBox.d.ts.map