import React from "react"; export interface ShowHideProps { condition: boolean; as?: keyof JSX.IntrinsicElements | React.ComponentType; children: React.ReactNode; } declare const Show: React.FC; declare const Hide: React.FC; export { Show, Hide };