export declare class SortOrderItem { /** The KdEntity property that we are filtering on*/ propertyName: string; /** * Valid Direction values are: asc|desc */ direction: string; constructor(propertyName: any, direction: any); errorCheckInitState(): void; setPropertyName(propertyName: any): this; getPropertyName(): string; setDirection(direction: any): this; getDirection(): string; setSelected(sortOrderItem: SortOrderItem): this; toJSON(): { Direction: string; PropertyName: string; }; getSortOrderModelItemValue(): { Direction: string; PropertyName: string; }; } /** * * @param propertyName * @param direction asc|desc */ export declare function createSortOrderItem(propertyName: string, direction: string): SortOrderItem;