import { Currency, TradeType } from "@uniswap/sdk-core"; import { Trade } from "@uniswap/v2-sdk"; import React, { Dispatch, SetStateAction } from "react"; export declare const AnimatedCard: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, { width?: string | undefined; padding?: string | undefined; border?: string | undefined; borderRadius?: string | undefined; } & { expand: boolean; }, never>; export declare const ArrowWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; export default function SwapModalHeader({ trade, recipient, showAcceptChanges, onAcceptChanges, onDisclaimerChange, }: { trade?: Trade; recipient: string | null; showAcceptChanges: boolean; onAcceptChanges: () => void; onDisclaimerChange: Dispatch>; }): JSX.Element | null;