import { Sort } from "../utils/types.js";
import "../utils/index.js";
//#region src/table/useTable.types.d.ts
type UseTableProps = {
  /** Initial sort value in uncontrolled mode. */
  defaultSort?: Sort;
  /** Callback called with updated value when sort changes. */
  onSortChange?: (sort: Sort) => void;
  /** Sort value in controlled mode. */
  sort?: Sort;
};
//#endregion
export { UseTableProps };

//# sourceMappingURL=useTable.types.d.ts.map