import * as React from 'react';
interface IRIfProps {
    if: boolean;
    children?: React.ReactNode;
}
export declare function R(props: IRIfProps): JSX.Element;
export {};
