export type TAnyObject<Value = unknown> = Record<string, Value>;
export type TEmptyObject = Record<string, never>;
