export declare const isString: (str: unknown) => str is string;
export declare const isNumber: (num: unknown) => num is number;
export declare const isFunction: (fn: unknown) => fn is (...args: never) => unknown;
//# sourceMappingURL=checkType.d.ts.map