import { Action } from '@argent/x-shared/simulation'; import { FC } from 'react'; import { HideComponentWithChildren } from './types'; interface TransactionReviewActionProps { action: Action; initiallyExpanded?: boolean; networkId: string; semanticColor?: string; hideComponent?: HideComponentWithChildren; } export declare const TransactionReviewAction: FC; export {};