import React from 'react';
interface BaseDrawerProps {
    title: string;
    isOpen: boolean;
    marginTop?: string;
    onClose: () => void;
    children: React.ReactNode;
}
declare const BaseDrawer: React.FC<BaseDrawerProps>;
export default BaseDrawer;
export type { BaseDrawerProps };
