import React from 'react'; type Props = { children: React.ReactNode; }; export default function ContextNav({ children }: Props): JSX.Element; export {};