/** * Returns true if the value is a string * * @since v0.0.1 * @category Type * @param {*} value - The value to check * @returns {boolean} */ export declare const isString: (value: unknown) => boolean;