import { Result } from "../types"; /** * Checks if argument is a real string. * * ### Example * ``` * expect(isString('foo').value).toBeTruthy() * ``` * @param value The value being checked. * */ export declare function isString(value: any): Result;