import type { ListProps } from '@mui/material'; import type { BoundWitness } from '@xyo-network/sdk'; import React from 'react'; /** Props for {@link AddressHistory}. */ export interface AddressHistoryProps extends ListProps { addressHistory?: BoundWitness[]; selectable?: boolean; skeleton?: boolean; } /** Scrollable list of bound witnesses for an address, with optional selection and skeletons. */ declare const AddressHistory: { ({ ref, addressHistory, selectable, skeleton, ...props }: AddressHistoryProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; export { AddressHistory }; //# sourceMappingURL=AddressHistory.d.ts.map