import type { SortRowItem } from "./hooks/use-sort-row-item.js";
export interface SortRowProps {
    readonly row: SortRowItem;
}
export declare const SortRow: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & SortRowProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
