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 {};
