import { UTCOffsetTime } from "../interfaces/utc-offset-time"; import { Value } from "./value"; export declare class UTCOffsetValue extends Value { type: string; private value; getValue(): UTCOffsetTime; setValue(value: string): this; toString(): string; }