import { HalResource } from '../hal/models/HalResource'; import { PublishingJob } from './PublishingJob'; /** * Class representing the Publishing Job Location resource. */ export declare class PublishingJobLocation extends HalResource { constructor(data?: any); /** * Location of the publishing job */ location: string; readonly related: { /** * Returns the publishing job */ publishingJob: () => Promise; }; }