import type { FieldPathByShape, SchemaShape } from './schema.js';
export type QueryOrderBy<TShape extends SchemaShape = SchemaShape, TField extends FieldPathByShape<TShape> = FieldPathByShape<TShape>> = {
    field: TField;
    direction: 'asc' | 'desc';
};
