/** * Page category */ export declare const PageCategoryType: import("../utils/schema").SchemaObjectType<{ /** * The id of the category. */ id: { core: true; type: "String"; }; /** * The value to be used, in the API, for category_enum. */ apiEnum: { default: true; type: "String"; }; /** * List of child categories. */ fbPageCategories: { type: () => import("../utils/schema").SchemaObjectType; }; /** * The name of the category. */ name: { default: true; type: "String"; }; }>;