import { UiSchemaType } from '../../types/schema.js'; export type SortInputProps = { columns: UiSchemaType[]; sort?: Sort; onChange: (value: Sort) => void; disabled?: boolean; }; export type Sort = { key: string; direction: 'asc' | 'desc'; }; export declare const SortInput: ({ columns, sort: sortProp, onChange, disabled, }: SortInputProps) => import("react/jsx-runtime").JSX.Element;