import React from 'react'; interface MobileViewProps { mobileFooter: React.ReactNode; expandedIds: Set; toggleExpanded: (id: string | number) => void; maxHeight?: string; tableContainerRef: React.RefObject; } declare function MobileView(props: MobileViewProps): React.JSX.Element; export default MobileView;