import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import React from 'react'; /** * Props for {@link WalletAccountSelectBar}. * @public */ export interface WalletAccountSelectBarProps extends FlexBoxProps { addressNames?: Record; iconOnly?: boolean; iconSize?: number; icons?: boolean; maxAccounts?: number; showFavorite?: boolean; size?: 'small' | 'medium'; } /** * Full-width bar wrapping {@link WalletAccountSelect} for toolbar layouts. * @public */ export declare const WalletAccountSelectBar: React.FC; //# sourceMappingURL=SelectBar.d.ts.map