import { ReactNode } from "react"; interface OptionalValueProps { value: T | undefined | null; render?: (value: T) => ReactNode; } /** * Renders a value if it is set, otherwise renders a placeholder. * * @class * @param props */ declare function OptionalValue(props: OptionalValueProps): import("react").JSX.Element; export default OptionalValue;