import { Value } from './Value'; /** * Represents a single string character (originating from the template string itself) * * @export * @class Character * @extends {Value} */ export declare class Character extends Value { /** * Create a character instance based on the input value. * Normalizes all whitespace into a single space * * @static * @param {string} value * @returns {Character} * @memberof Character */ static from(value: string): Character; }