import type { ReactNode } from 'react'; export interface AccountBalanceChipProps { /** What the balance is, as the host names it (e.g. `Total cash`). */ label: string; /** The formatted balance (e.g. `$366,715.12`). */ value: string; /** A 32px avatar or app glyph. The SDK never fetches one itself. */ avatar?: ReactNode; /** Links back out to the host context (e.g. the profile page). */ onPress?: () => void; accessibilityLabel?: string; } /** * Top-level account context in the deposit header: a label + balance pair with * the host's avatar beside them. Everything shown is host-supplied — this is * the integrator's app talking, not funkit data. */ export declare function AccountBalanceChip({ label, value, avatar, onPress, accessibilityLabel, }: AccountBalanceChipProps): import("react").JSX.Element; //# sourceMappingURL=AccountBalanceChip.d.ts.map