export declare class OrderProperty { private propertyPath; private isDesc; constructor(propertyPath: string, isDesc?: boolean); getPropertyPath(): string; getDirection(): boolean; getValue(): string; }