/**
* Conditionally renders content based on a truthy value.
*
* @template T - The type of the condition value
* @template U - The JSX element type returned by the render functions
* @param props.when - The condition value to evaluate for truthiness
* @param props.children - A single render or tuple containing render functions for true and optionally false cases
* @returns The rendered JSX element based on the condition's truthiness
*
* @example
* ```tsx
*
* {(user) => Welcome, {user.name}!
}
* {() => Please log in
}
*
*
* // Or without fallback
*
* {() => This content is visible
}
*
* ```
*/
export declare function Show(props: {
when: C;
children: ((value: NoInfer) => LitJSX.Child) | [
true: ((value: NoInfer) => LitJSX.Child),
false: ((value: NoInfer) => LitJSX.Child)
];
}): LitJSX.Child;
//# sourceMappingURL=show-component.d.ts.map