/** The namespace for the string functions */
export declare namespace String {
    /**Checks if the given text value is a valid string
     * @param value The valued to compare to
     * @returns True or false if the text represents an string*/
    function is(value: string): boolean;
}
