UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 352 B
import type * as React from 'react'; import type { LayoutTheme } from "../../index.js"; interface LayoutPresenterProps { children?: React.ReactNode; title?: string; theme?: LayoutTheme; } export declare const LayoutPresenter: ({ children, title, theme: config }: LayoutPresenterProps) => import("react/jsx-runtime").JSX.Element; export {};