import type { ReactNode } from 'react'; export interface SelectableAssetRowProps { name: string; /** The 36px leading avatar — a token, a chain, or a token-on-chain pair. */ icon: ReactNode; /** A second value the row carries, set against its trailing edge. */ detail?: string; selected: boolean; /** Offered but not pickable, e.g. a chain that doesn't carry the picked token. */ disabled?: boolean; onPress: () => void; accessibilityLabel: string; } /** One row of a token or chain pick list (Figma `list-item/base`). */ export declare function SelectableAssetRow({ name, icon, detail, selected, disabled, onPress, accessibilityLabel, }: SelectableAssetRowProps): import("react").JSX.Element; //# sourceMappingURL=SelectableAssetRow.d.ts.map