import { SwipeableDrawerProps } from "@mui/material";
import { FunctionComponent, PropsWithChildren, ReactNode } from "react";
import { SplitPaneProps } from "../splitPane/SplitPane";
export type LayoutProps = PropsWithChildren<{
    appBar?: ReactNode;
    menu?: ReactNode;
    splitPaneProps?: Omit<SplitPaneProps, "children">;
    swipeableDrawerProps?: SwipeableDrawerProps;
}>;
export declare const Layout: FunctionComponent<LayoutProps>;
