/** * Annotate a table expression to indicate descending sort order. * @param {string|Function|object} expr The table expression to annotate. * @return {object} A wrapped expression indicating descending sort. * @example desc('colA') * @example desc(d => d.colA) */ export default function _default(expr: string | Function | object): object;