import { DirectionType } from '../enum/DirectionType';
declare const _default: {
    new (): {
        /**
         * Campo que será ordenado
         */
        _field: string;
        field: string;
        /**
         * Tipo da ordenação
         */
        _direction: DirectionType;
        direction: DirectionType;
        toJsonString(): string;
        replaceArray(json: string): string;
        toJson(): any;
        isArray(what: any): boolean;
    };
};
export = _default;
