import type { ReactNode } from "react";
import { iConditionClause } from "./switch";
interface iShowProps {
    when: iConditionClause;
    children: ReactNode | string | null;
    fallBack?: ReactNode | string | null;
}
export declare const Show: ({ when, children, fallBack, }: iShowProps) => ReactNode | null;
export {};
