export declare function find(record: Record, predicate: (v: T) => boolean): T | undefined; export declare function forEach(record: Record, run: (v: T, key: string) => void): void; export declare function includes(arr: T[], value: T): boolean; export declare function findArr(record: T[], predicate: (v: T) => boolean): T | undefined;