@gravity-ui/uikit
Version:
Gravity UI base styling and components
11 lines (10 loc) • 382 B
TypeScript
import type * as React from 'react';
import type { LayoutTheme } from "../../index.js";
interface LayoutPresenterProps {
children?: React.ReactNode;
title?: string;
theme?: LayoutTheme;
fixBreakpoints?: boolean;
}
export declare const LayoutPresenter: ({ children, title, theme: config }: LayoutPresenterProps) => import("react/jsx-runtime").JSX.Element;
export {};