import React from 'react'; import type { MobileMenuConfig } from './types'; interface MobileMenuProps { visible: boolean; onClose: () => void; children: React.ReactNode; config?: MobileMenuConfig; } export declare const MobileMenu: React.FC; export {};