import type { TokenData } from "@0xsquid/sdk"; import React from "react"; import type { SwapDirection } from "../../core/types/types"; interface Props extends React.HTMLAttributes { direction: SwapDirection; token?: TokenData; price?: number | string; tokenBasePrice?: number; isLoadingPrice?: boolean; onPriceChange?: (price: string) => void; onDestinationAddressChange?: ({ address, filledFromWallet, }: { address: string; filledFromWallet: boolean; }) => void; } export declare const SwapConfiguration: ({ direction, token, price, tokenBasePrice, isLoadingPrice, onPriceChange, onDestinationAddressChange, ...props }: Props) => JSX.Element; export {};