import { PublishingChannelId } from "./PublishingChannel"; import { PageId } from "../pages"; import { Identity } from "@omnia/fx-models"; export declare enum PublishingStatus { WaitingForPublishDirectly = 0, PendingApproval = 1, Published = 2, Reject = 3, WaitingForPendingApproval = 4 } export interface ChannelPage { pageId: PageId; channelId: PublishingChannelId; status: PublishingStatus; createdBy: Identity; rejectionComment?: string; pageTitle?: string; pageUrl?: string; isDefault?: boolean; publishDirectly?: boolean; }