import { TccAuthService } from '../../../odata/services/tcc-auth/tcc-auth.service';
import { TccSingleton } from '../../../core/models/tcc-singleton.model';
export declare namespace TccGetOrderByFields {
    enum type {
        Standard = "Standard",
        TccTranslation = "TccTranslation"
    }
}
export declare class TccGetOrderByFieldsService implements TccSingleton {
    private auth;
    constructor(auth: TccAuthService);
    init(): void;
    reset(): void;
    getFields(fieldsPrefix: string, type: TccGetOrderByFields.type): string[];
}
