import React, { ReactNode } from "react";
export default function SlideInPanel({ visible, children, }: {
    visible?: boolean;
    children: ReactNode;
    component_width?: string;
}): React.JSX.Element;
