/// interface IProps { children: JSX.Element; isTrue: boolean; } declare const RenderIf: ({ children, isTrue }: IProps) => JSX.Element | null; export default RenderIf;