/** * @description * Check whether `value` is a string. * * @parameters * | name | type | description | * | :--: | :--: | ----------- | * | value | `any` | Value to test | * * @returns `boolean` * * @example * isString('something here') * // -> true * * isString(400) * // -> false * * @since v1.0.0 * @tag types * @tag logic */ interface IsString { (value: unknown): value is string } declare const isString: IsString export = isString