UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

10 lines (9 loc) 425 B
import type { ReactNode } from 'react'; import type { ShellContentLayout } from './types.js'; export interface ShellScrollableContentProps { children: ReactNode; desktopDockOffset?: number; layout: ShellContentLayout; maxWidth?: number; } export declare function ShellScrollableContent({ children, desktopDockOffset, layout, maxWidth, }: ShellScrollableContentProps): import("react/jsx-runtime").JSX.Element;