import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import React from 'react'; /** Props for {@link AddressRenderRowBox}. */ export interface AddressRenderRowBoxProps extends FlexBoxProps { address?: string | null; disableSharedRef?: boolean; favorite?: boolean; iconOnly?: boolean; iconSize?: number; icons?: boolean; name?: string; showFavorite?: boolean; } /** Renders an address row with optional identicon, name, and favorite control. */ export declare const AddressRenderRowBox: { ({ ref, address, children, disableSharedRef, favorite: favoriteProp, iconOnly, iconSize, icons, name, showFavorite, ...props }: AddressRenderRowBoxProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; //# sourceMappingURL=RenderRowBox.d.ts.map