import React from 'react';
import { InteractiveIconProps, IconProps } from '@xo-union/tk-component-icons';
export declare const FavoritesLink: ({ isFilled, ...props }: FavoritesProps) => React.JSX.Element;
export type FavoritesProps = ({
    isFilled?: boolean;
    href: string;
} & InteractiveIconProps<any, 'a'>) | ({
    isFilled?: boolean;
} & Omit<IconProps, 'href'>);
