/**
 * Return typeof value
 */
declare function toType(value: unknown): string;
/**
 * Check is typeof value is function
 */
declare function isFunction(value: unknown): boolean;
export { toType, isFunction, };
