import { ReactNode } from 'react'; declare function Conditional({ children, showIf }: { children: ReactNode; showIf: boolean; }): JSX.Element; export default Conditional;