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