export declare function values<T>(object: {
    [k: string]: T;
}): T[];
export declare function flat<T>(arr: T[][]): T[];
