import { Component } from "./component"; import { DayLight } from "./day-light"; import { Standard } from "./standard"; import { ConvertToICS } from "../interfaces/convert-to-ics"; import { ComponentImpl } from "../interfaces/impl"; import { LastModified } from "../properties/last-modified"; import { Property } from "../properties/property"; import { TZID } from "../properties/tz-id"; import { TZUrl } from "../properties/tz-url"; export declare class VTimezone extends Component implements ComponentImpl { type: string; daylight: DayLight; standard: Standard; TZID: TZID; lastModified: LastModified; TZUrl: TZUrl; setComponent(component: Component): this; setProperty(property: Property): this; getICSTokens(): ConvertToICS; }