import type { BottomNavigationProps } from '@mui/material'; import type { BoundWitness } from '@xyo-network/sdk'; import type { Dispatch, SetStateAction } from 'react'; import React from 'react'; /** Props for {@link BoundWitnessBottomNavigation}. */ export interface BoundWitnessBottomNavigationProps extends BottomNavigationProps { activeTab?: number; boundWitness?: BoundWitness; setActiveTab?: Dispatch>; } /** Bottom navigation for payloads, nested bound witnesses, and signatures. */ declare const BoundWitnessBottomNavigation: { ({ ref, activeTab, setActiveTab, boundWitness, ...props }: BoundWitnessBottomNavigationProps & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; export { BoundWitnessBottomNavigation }; //# sourceMappingURL=BottomNavigation.d.ts.map