import React from 'react';
type RenderIfProps = {
    children: React.ReactNode;
    condition: boolean;
};
export declare const RenderIf: React.FC<RenderIfProps>;
export {};
