import { ReactNode } from 'react';
interface AntDrawerProps {
    title: ReactNode;
    open: boolean;
    closePanle: () => void;
    children: ReactNode;
    position?: 'left' | 'right' | 'top' | 'bottom';
    size?: number | string;
    loading?: boolean;
    customActions?: ReactNode;
    drawerId: string;
    className?: string;
}
declare const RDrawer: ({ title, size, position, open, closePanle, loading, children, customActions, drawerId, className, }: AntDrawerProps) => import("react/jsx-runtime").JSX.Element;
export { RDrawer };
