import React from "react"; import { Size, Variant } from "./Button"; export declare const SortButton: React.FC; export interface SortButtonProps { variant?: Variant; size?: Size; /** * button title, corresponds to title on hover */ title?: string; /** * if true, the button edges are rounded */ rounded?: boolean; active?: boolean; sortAsc?: boolean; onClick?: (event: React.MouseEvent) => void; children?: any; }