export declare type dependencis = string | string[];
export declare function forEach<T>(target: Array<T>, eachFunc: (val: T, key: number) => void): void;
export declare function forEach<T>(target: {
    [index: string]: T;
}, eachFunc: (val: T, key: string) => void): void;
export declare function forEach(target: any, eachFunc: (val: any, key: any) => void): void;
