export { getType } from './utils/type'; export { isObjectOrArray, isNumeric, isString, isObject, isArray, isRegExp, isFunction } from './utils/type'; export { each } from './utils/each'; export { heredoc } from './utils/heredoc'; export declare const keys: { (o: object): string[]; (o: {}): string[]; }; export declare const values: { (o: { [s: string]: T; } | ArrayLike): T[]; (o: {}): any[]; }; export declare function noop(): void;