import { DataType } from '../../ast/entity/data-type'; export declare class StringType extends DataType { private length; constructor(type: number); setLength(length: number): void; getLength(): number; }