import { FormatHandle, Formatter, FormatType } from '../../../../formatter/formatter'; import { OrderByDescription } from './order-by-description'; import { FormatContext } from '../../../../formatter/format-context'; export declare class OrderByFormatter implements FormatHandle { type: FormatType; canHandle(param: any): boolean; handle(param: OrderByDescription, ctx: FormatContext, formatter: Formatter): string; private getOrderBy; }