import React from 'react'; import { siderType } from '../../core/config'; export interface LayoutProps { siderType?: siderType; children?: React.ReactNode; } export declare const Layout: ({ siderType }: LayoutProps) => import("react/jsx-runtime").JSX.Element;