import React, { type ReactNode } from "react";
interface ShowComponentProps {
    children: ReactNode;
}
interface WhenProps {
    isTrue: boolean;
    children: ReactNode;
}
interface ElseProps {
    children: ReactNode;
}
declare const ShowComponent: React.FC<ShowComponentProps> & {
    When: React.FC<WhenProps>;
    Else: React.FC<ElseProps>;
};
export { ShowComponent };
