import type { SelectProps } from '@mui/material'; import React from 'react'; import type { AddressRenderRowBoxProps } from '../../../address-render/index.js'; type SharedAddressRenderRowBoxProps = Pick; /** * Props for {@link WalletAccountSelect}. * @public */ export type WalletAccountSelectProps = SharedAddressRenderRowBoxProps & Omit, 'variant'> & Partial> & { addressNames?: Record; maxAccounts?: number; }; /** * Select control for choosing the active HD wallet account index. * @public */ export declare const WalletAccountSelect: React.FC; export {}; //# sourceMappingURL=Select.d.ts.map