declare type Primitive = bigint | boolean | null | number | string | symbol | undefined;
declare type PlainObject = Record<string, Primitive | unknown>;
export default PlainObject;
