/// <reference types="react" />
import { ProviderProps } from '../../types';
interface Props extends ProviderProps {
    color?: string;
    backgroundColor?: string;
    position?: string;
    vOffset?: string;
    hOffset?: string;
    style?: string;
}
declare const Userlike: ({ color, backgroundColor, position, vOffset, hOffset, style, containerClass }: Props) => JSX.Element | null;
export default Userlike;
