import type { CSSProperties } from "react"; import { type CrediballThemeOverrides } from "./theme"; export interface CreditIndicatorProps extends CrediballThemeOverrides { /** * Pre-formatted balance (e.g. "6.20"). Omit to read + format it automatically * from an ancestor . */ balanceLabel?: string; /** Text before the balance (default "Credits:"). */ label?: string; /** Defaults to opening the provider's paywall when a is present. */ onClick?: () => void; style?: CSSProperties; } /** * Pattern C — Subtle indicator. A quiet balance chip for a host app's top bar; * clickable to open a top-up flow. Minimal and non-intrusive. */ export declare function CreditIndicator({ balanceLabel, label, onClick, accentColor, style, }: CreditIndicatorProps): import("react").JSX.Element;