import { ReactNode } from 'react'; import { PrivateMenuProps } from './PrivateMenu'; declare type Props = { link: string; state?: any; children: ReactNode; id: string; isPrivate?: boolean; editLink?: string; editState?: any; }; declare const CommonLinkWrapper: (props: PrivateMenuProps & Props) => JSX.Element; export default CommonLinkWrapper;