export namespace utils { export { isString }; export { apply }; } declare function isString(value: any): value is string | String; declare function apply(o: any, o2: any): any; export {};