import { ReactElement } from 'react';
import { SwapProps } from './types/props.js';
/**
 * A`Swap` component that can be embedded into applications. To use,
 * one should install all prerequisite libraries and setup
 * For example,
 *
 * ```javascript
 * <YakSwap />
 * ```
 *
 * All of the complexity of communicating with the YY Router and managing
 * its data is handled internally by the component.
 *
 * For information on other properties like earning referrals, see the
 * [[SwapProps]] documentation.
 */
export default function YakSwap(props: SwapProps): ReactElement;
