import { ReactNode } from "react";
type Props = {
    condition: boolean;
    children?: ReactNode;
};
declare function If({ condition, children }: Props): import("react/jsx-runtime").JSX.Element;
export default If;
