import { Base, Type } from "./type";
import { ListSortDirection } from "./ListSortDirection";
/**
 * @hidden
 */
export declare class DataSourceSortDescription extends Base {
    static $t: Type;
    constructor(a: number);
    constructor(a: number, b: string);
    constructor(a: number, b: string, c: ListSortDirection);
    constructor(a: number, ..._rest: any[]);
    private e;
    get f(): string;
    set f(a: string);
    private b;
    get c(): ListSortDirection;
    set c(a: ListSortDirection);
    equals(a: any): boolean;
    getHashCode(): number;
}
