import React from "react"; import { HybridNavigationLink } from "./nav-list"; import { NavMenuProps } from "./nav"; export type NavigationExpandedProps = { links?: Array; children?: React.ReactNode; onRequestClose: () => void; className?: string; menu: NavMenuProps; }; declare function NavigationExpandedCharityV2({ children, onRequestClose, className, menu, }: NavigationExpandedProps): React.JSX.Element; export default NavigationExpandedCharityV2;