import React from "react";
import "./index.css";
type IRightPanelConfig = {
    title?: string | React.ReactNode;
    content?: React.ReactNode;
    footer?: React.ReactNode;
    width?: number;
    onClose?: () => undefined | boolean | Promise<boolean> | void;
};
declare const RightPanel: React.FC<IRightPanelConfig>;
export default RightPanel;
