import * as React from 'react'; import { OnSort } from '../types'; interface SortControlProps { columnKey: string; onSort?: OnSort; children: string; } export declare const SortControl: React.FC; export {};