import { Dict } from "../types"; /** * Assert is an objectLike * TODO: Assert the return type */ export declare const isObjectLike: (arg: unknown) => arg is any; /** * Assert is an object */ export declare const isObject: (arg: unknown) => arg is Dict; //# sourceMappingURL=is.d.ts.map