export declare const SERVICE_IDENTIFIER: {
    /**
     * Bind auth info for your Camunda server
     * Check tests for more info
     */
    camunda_oauth_info: symbol;
    /**
     * Bind the Camunda repository that standard REST API
     */
    camunda_repository: symbol;
    /**
     * Bind the Camunda service that use the camunda_repository service identifier
     */
    camunda_service: symbol;
    /**
     * Bind the Generic Camunda client you want to use
     */
    camunda_client: symbol;
    /**
     * Bind the Camunda BPMN Workflow Engine client you want to use (for external tasks)
     */
    camunda_external_client: symbol;
    /**
     * Bind the Camunda BPMN Workflow Engine configuration
     */
    camunda_external_config: symbol;
    /**
     * Bind your own config for Camunda system
     */
    camunda_config: symbol;
    logger: symbol;
    failure_strategy: symbol;
    success_strategy: symbol;
    process_handler: symbol;
    process_handler_config: symbol;
    worker: symbol;
    tracer: symbol;
    tracer_propagator: symbol;
};
