/**
 * Get the values of any object with string keys.
 * @param obj any
 * @returns array of the values in the object passed as parameter
 */
export declare function values<T>(data: {
    [key: string]: T;
} | T[]): T[];
export declare function valuesWithIds<T>(data: {
    [key: string]: T;
} | T[]): any[];
