import React, { ReactNode } from 'react'; import { IComponentBaseProps } from '../types'; export declare type SwapProps = React.LabelHTMLAttributes & IComponentBaseProps & { onElement: ReactNode | ReactNode[]; offElement: ReactNode | ReactNode[]; active?: boolean; rotate?: boolean; flip?: boolean; }; declare const Swap: React.ForwardRefExoticComponent & IComponentBaseProps & { onElement: ReactNode | ReactNode[]; offElement: ReactNode | ReactNode[]; active?: boolean | undefined; rotate?: boolean | undefined; flip?: boolean | undefined; } & React.RefAttributes>; export default Swap;