import ValueRange from './ValueRange'; import { DataType } from '../Util/DataTypes'; export default class StringValueRange extends ValueRange { start: null | string; end: null | string; startInclusive: boolean; endInclusive: boolean; constructor(start: null | string, end: null | string, dataType?: DataType, startInclusive?: boolean, endInclusive?: boolean); castString(): ValueRange; castInteger(): ValueRange; castDecimal(): ValueRange; castFloat(): ValueRange; castDouble(): ValueRange; castDateTime(): ValueRange; castBoolean(): ValueRange; } //# sourceMappingURL=StringValueRange.d.ts.map