@redocly/theme
Version:
Shared UI components lib
13 lines (12 loc) • 373 B
TypeScript
import React from 'react';
import { LayoutVariant } from '@redocly/config';
import type { JSX } from 'react';
interface LayoutConfig {
children: React.ReactNode;
layout?: LayoutVariant;
collapsedSidebar?: boolean;
id?: string;
className?: string;
}
export declare function ThreePanelLayout({ children, ...props }: LayoutConfig): JSX.Element;
export {};