import React from "react"; import { type VariantProps } from "../../utils.js"; declare const columnSorterVariants: (props?: ({ sortable?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface ColumnSorterProps extends React.HTMLAttributes, VariantProps { } declare const ColumnSorter: ({ className, children, sortable, ...props }: ColumnSorterProps) => React.JSX.Element; export { ColumnSorter };