import React, { CSSProperties } from 'react';
export type Props = {
    onClick?: () => void;
    color?: 'gray' | 'white';
    className?: string;
    style?: CSSProperties;
};
declare const LabelPin: ({ onClick, color, className, style }: Props) => React.JSX.Element;
export { LabelPin };
