import { ValueType } from '../../../operands/value-type'; export interface OrderByDescription { value: ValueType; direction: 'asc' | 'desc'; } export declare const isOrderByDescription: (val: any) => val is OrderByDescription;