export interface SelectedChainRowProps { /** Section label above the chain name, e.g. `Selected chain`. */ label: string; /** The chain's display name, e.g. `Base`. */ name: string; /** Full CDN logo URL for the 32px chain icon. */ iconUri: string; accessibilityLabel: string; onPress?: () => void; } /** * The tappable "Selected chain" card on the Transfer screen. Shows the chain the * deposit address was generated for and opens the chain picker to change it. */ export declare function SelectedChainRow({ label, name, iconUri, accessibilityLabel, onPress, }: SelectedChainRowProps): import("react").JSX.Element; //# sourceMappingURL=SelectedChainRow.d.ts.map