import React, { PropsWithChildren } from "react"; export type ValueProps = PropsWithChildren<{ notSet?: boolean; bold?: boolean; }>; export declare const Value: React.FC;