/** * Checks if passed argument is a string * @param v - variable to check * @returns true, if passed v is ot type string, false otherwise */ export declare function isString(v: any): v is string;