import { Host } from './host'; export declare class PullZone { name: string; originUrl: string; constructor(name: string, originUrl: string); id: number; enabled: boolean; hostNames: Host[]; storageZoneId: number; allowedReferrers: string[]; blockedIps: string[]; enableGeoZoneUS: boolean; enableGeoZoneEU: boolean; zoneSecurityEnabled: boolean; zoneSecurityKey: string; zoneSecurityIncludeHashRemoteIP: boolean; ignoreQueryStrings: boolean; monthlyBandwidthLimit: number; monthlyBandwidthUsed: number; addHostHeader: boolean; zoneType: number; accessControlOriginHeaderExtensions: string[]; enableAccessControlOriginHeader: boolean; disabledCookies: boolean; budgetRedirectedCountries: string[]; blockedCountries: string[]; }