export declare type Kind = 'null' | 'undefined' | 'boolean' | 'number' | 'string' | 'symbol' | 'bigint' | 'function' | 'array' | 'object';
export declare const typeOf: (value: unknown) => Kind;
