import { BackendSession } from '@argent/x-shared'; import { FlexProps } from '@chakra-ui/react'; import { FC } from 'react'; interface BackendSessionRowProps extends FlexProps { session: BackendSession; networkId: string; onRevoke: () => void; initialExpanded?: boolean; } export declare const BackendSessionRow: FC; export {};