export type PlainObject = { [name: string]: any; }; export type PlainObjectOf = { [name: string]: T; }; export declare const isPlainObject: (obj: any) => obj is PlainObject;