UNPKG

@redocly/theme

Version:

Shared UI components lib

12 lines (11 loc) 339 B
import React from 'react'; import { LayoutVariant } from '@redocly/config'; interface LayoutConfig { children: React.ReactNode; layout?: LayoutVariant; collapsedSidebar?: boolean; id?: string; className?: string; } export declare function ThreePanelLayout({ children, ...props }: LayoutConfig): JSX.Element; export {};