import { XmatGenericObject, XmatConstantsLabels } from "../models/index";
export declare const XMAT_CONSTANT_LABELS: XmatConstantsLabels;
export declare class XmatConstantsService {
    /**
     * PUBLIC STUFF
     */
    readonly mocksEndings: {
        ok: string;
        ko: string;
    };
    readonly mocksBaseUrl: string;
    restBaseUrl: string;
    readonly dialogOptions: any;
    readonly ds: string;
    readonly fileNameSpace: string;
    labels: XmatConstantsLabels;
    readonly paramsPlaceholder: string;
    readonly queryUrlParam: string;
    readonly regExps: XmatGenericObject<string>;
    readonly routeParams: string;
    constructor();
    /**
     * PUBLIC FUNCTIONS
     */
    isGenericObject(entity: any): boolean;
    isStrictlyObject(entity: any): boolean;
    isObjectEmpty(obj: object): boolean;
    noop(): void;
    removeTrailingSlash(target: string): string;
}
