type Result = "Object" | "Array" | "Function" | "Symbol" | "Undefined" | "Null" | "Number" | "Set" | "Map" | "FormData" | "URLSearchParams" | "Boolean" | "AsyncFunction" | "String" | string; export declare function typeOf(x: any): Result; export {};