import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { UTCOffsetValue } from "../values/utc-offset"; export declare class TZOffsetFrom extends Property implements PropertyImpl { type: string; value: UTCOffsetValue; setValue(value: string): this; toString(): string; }