import { FunctionComponent } from "react"; interface IfProps { name?: string | number; not?: boolean; } declare const If: FunctionComponent; export default If;