declare const _default: ConfigHealthService; export default _default; /** * Checks the health of the configuration folder in Alfresco. * * Verifies that the pristy-config node (fixed NodeRef) exists and contains * a sub-folder matching the current INSTANCE_NAME. */ declare class ConfigHealthService { /** * Verify the instance config folder exists under pristy-config. * * @returns {Promise<{ok: boolean, detail: string}>} * ok=true → instance folder found * ok=false → pristy-config or instance folder missing */ check(): Promise<{ ok: boolean; detail: string; }>; } //# sourceMappingURL=ConfigHealthService.d.ts.map