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