import { HCLGenerator, WarningCollector } from '../types.js'; import { useConditionSetApi } from '../../../../hooks/useConditionSetApi.js'; export declare class UserSetGenerator implements HCLGenerator { private warningCollector; name: string; private template; private listConditionSets; constructor(listConditionSetsFn: ReturnType['listConditionSets'], warningCollector: WarningCollector); /** * Convert conditions object from camelCase (allOf/anyOf) to snake_case (all_of/any_of) * This is needed because the API client auto-converts to camelCase, but HCL needs snake_case */ private convertConditionsToSnakeCase; private formatConditions; generateHCL(): Promise; }