import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { IntegerValue } from "../values/integer"; export declare class Sequence extends Property implements PropertyImpl { type: string; value: IntegerValue; setValue(value: string): this; toString(): string; }