import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface RemoteShellContentProps extends HTMLAttributes { ref?: Ref; children?: ReactNode; isLoading?: boolean; } export declare const RemoteShellContent: FC;