import type { FC, HTMLAttributes, Ref } from 'react'; export interface RemoteShellPanelProps extends HTMLAttributes { ref?: Ref; resizable?: boolean; isLoading?: boolean; loaderCount?: number; } export declare const RemoteShellPanel: FC;