import React from 'react'; import { FlintTableSortLabel as FlintTableSortLabelElement } from '@getufy/flint-ui/table/flint-table-sort-label'; export interface FlintTableSortLabelProps extends React.HTMLAttributes { /** Whether this column is currently sorted. */ active?: boolean; /** * Sort direction when active. * Allowed values: 'asc' | 'desc' */ direction?: 'asc' | 'desc'; } export declare const FlintTableSortLabel: React.ForwardRefExoticComponent>;