import { ReactNode } from 'react';
type RenderIfProps = {
    condition: boolean;
    children: ReactNode;
};
type ElseProps = {
    children: ReactNode;
};
declare const RenderIf: {
    ({ condition, children }: RenderIfProps): import("react/jsx-runtime").JSX.Element | null;
    Else: {
        ({ children }: ElseProps): import("react/jsx-runtime").JSX.Element;
        displayName: string;
    };
    displayName: string;
};
export default RenderIf;
