import { IObjectLookup, IParam, TMapLookup } from "./interfaces"; export declare function mapToArray(map: TMapLookup): T[]; export declare function mapToObject(map: TMapLookup): IObjectLookup; export declare function transformMapToParamList(initialize: TMapLookup): IParam[]; export declare function sortByOrderASC(input1: { order: number; }, input2: { order: number; }): number; export declare function sortByOrderDES(input1: { order: number; }, input2: { order: number; }): number; /** Function to return first part of an association before / */ export declare function getAssociation(input: string): string; /** Function to return the path from constrain. For example [a/b/c/d]=> a/b/c */ export declare function getPathFromConstraint(input: string): string;