declare const _default: ClassificationService; export default _default; declare class ClassificationService { /** * Fetches a specific classification plan from the config service. * @param {string} filename The name of the plan file (e.g., 'plan-classification.json'). * @returns {Promise} A promise that resolves with the JSON content of the plan. */ getPlan(filename: string): Promise; /** * Saves a specific classification plan using the config service. * @param {string} filename The name of the plan file. * @param {object} content The JSON object to save. * @returns {Promise} A promise that resolves when the operation is complete. */ savePlan(filename: string, content: object): Promise; /** * Lists all existing classification plans. * @returns {Promise} A promise that resolves with an array of filenames. */ listPlans(): Promise; /** * Fetches a classification plan along with its allowableOperations. * @param {string} filename The name of the plan file. * @returns {Promise<{content: any, allowableOperations: string[]}>} */ getPlanWithPermissions(filename: string): Promise<{ content: any; allowableOperations: string[]; }>; /** * Lists all existing classification plan entries (full Alfresco nodes). * @returns {Promise} A promise that resolves with an array of Alfresco entry objects. */ listPlanEntries(): Promise; #private; } //# sourceMappingURL=ClassificationService.d.ts.map