import { FunctionComponent, ReactNode } from "react";
export type LeftPanelProps = {
    leftWidth: number | undefined;
    setLeftWidth: (value: number) => void;
    children: ReactNode;
};
export declare const LeftPanel: FunctionComponent<LeftPanelProps>;
