import type { CSSProperties, ReactNode } from "react"; /** * Shared rendering shell for the Tier-2 "variable" components (CrediballBalance, * CrediballUsage, CrediballLowCreditWarning): an inline that inherits the * surrounding font/color so it reads naturally wherever it's placed. */ export declare function InlineValue({ className, style, children, }: { className?: string; style?: CSSProperties; children: ReactNode; }): import("react").JSX.Element;