import { type DOMElement } from "ink";
import React from "react";
export type PaneProps = React.PropsWithChildren<{
    isFocused?: boolean;
    isLoading?: boolean;
}>;
export declare const Pane: React.ForwardRefExoticComponent<{
    isFocused?: boolean;
    isLoading?: boolean;
} & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<DOMElement>>;
