import React from 'react'; interface TerminalProps extends React.ComponentProps<'div'> { title?: string; lastlogin?: Date; hostname?: string; username?: string; } declare const Terminal: { (props: TerminalProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Terminal }; //# sourceMappingURL=Terminal.d.ts.map