import { Base, Type } from "./type";
import { ListSortDirection } from "./ListSortDirection";
/**
 * @hidden
 */
export declare class SortDescription extends Base {
    static $t: Type;
    private b;
    constructor();
    private h;
    get propertyName(): string;
    set propertyName(a: string);
    private d;
    get direction(): ListSortDirection;
    set direction(a: ListSortDirection);
    private g;
    get displayName(): string;
    set displayName(a: string);
    equals(a: any): boolean;
    getHashCode(): number;
    k(): void;
    static create(a: string, b: ListSortDirection, c?: string): SortDescription;
}
