import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface AppShellRemoteProps extends HTMLAttributes { ref?: Ref; children?: ReactNode; } export declare const AppShellRemote: FC;