Repository URL to install this package:
|
Version:
0.4.46 ▾
|
import React, { type ReactNode } from "react";
type Props = {
title?: string;
focused?: boolean;
height?: number | string;
width?: number | string;
flexGrow?: number;
flexShrink?: number;
children: ReactNode;
badge?: ReactNode;
};
export declare function Panel({ title, focused, height, width, flexGrow, flexShrink, children, badge, }: Props): React.JSX.Element;
export declare function useTerminalSize(): {
cols: number;
rows: number;
};
export {};
//# sourceMappingURL=Panel.d.ts.map