export declare const identity: (x: T) => T; export declare const noop: () => void; export declare const extractLast: (str: string, symb: string) => string[]; export declare const shuffleArray: (arr: T[]) => T[]; export declare const findWithIndex: (arr: T[], cb: (s: T, i: number) => boolean) => [undefined, number] | [T, number];