/**
 * Checks if `value` is of type string
 *
 * @param {unknwon} value The value to check.
 * @returns {boolean} true if string otherwise false.
 */
declare const assert_string: (value: unknown) => void;
export default assert_string;
