import React from "react";
interface TerminalProps {
    title: string;
    children?: React.ReactNode;
}
declare const Terminal: ({ title, children }: TerminalProps) => import("react/jsx-runtime").JSX.Element;
export default Terminal;
