export interface UpdateArticleRequestBody { parent_type?: UpdateArticleRequestBody.ParentType; } export declare namespace UpdateArticleRequestBody { const ParentType: { readonly Collection: "collection"; readonly Section: "section"; }; type ParentType = (typeof ParentType)[keyof typeof ParentType]; }