import type { User, State } from "./model/studio.types.js"; export interface ShellProps { screen: State; user: User; } declare function Shell({ screen, user }: ShellProps): import("react/jsx-runtime").JSX.Element; export { Shell };