import React from 'react';
interface NotFoundProps {
    content?: React.ReactNode;
}
export default function SideContent({ content, }: NotFoundProps): React.JSX.Element;
export {};
