UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

9 lines (8 loc) 331 B
import type { ReactNode } from 'react'; import type { ShellMainLayout } from './types.js'; export interface ShellMainProps { layout?: ShellMainLayout; className?: string; children: ReactNode; } export declare function ShellMain({ layout, className, children }: ShellMainProps): import("react/jsx-runtime").JSX.Element;