/** * Represents a Facebook Page. */ export declare const PageType: import("../utils/schema").SchemaObjectType<{ /** * Page ID. No access token is required to access this field */ id: { type: "String"; core: true; }; /** * Information about the Page */ about: { nullable: true; type: "String"; }; /** * The Page's access token. Only returned if the User making the request has a * role (other than Live Contributor) on the Page. If your business requires * two-factor authentication, the User must also be authenticated */ accessToken: { nullable: true; type: "String"; }; /** * The Page's currently running promotion campaign */ addCampaign: { type: () => import("../utils/schema").SchemaObjectType<{ id: { type: "String"; core: true; }; accountId: { type: "String"; }; }>; }; /** * Affiliation of this person. Applicable to Pages representing people */ affiliation: { type: "String"; }; /** * App ID for app-owned Pages and app Pages */ appId: { type: "String"; }; /** * The Page's category. e.g. Product/Service, Computers/Technology */ category: { default: true; type: "String"; }; /** * The Page's sub-categories */ categoryList: { default: true; list: true; type: () => import("../utils/schema").SchemaObjectType<{ /** * Page ID. No access token is required to access this field */ id: { core: true; type: "String"; }; apiEnum: { default: true; type: "String"; }; fbPageCategories: { type: () => import("../utils/schema").SchemaObjectType; }; name: { default: true; type: "String"; }; }>; }; name: { type: "String"; }; }>;