import { HydratedItem } from '../../contexts/types'; import { CuringDescriptorState } from '../../widgets/TaxbitCuringDocumentation/types'; /** * Walk the curing descriptor tree, drop hidden entries (a hidden section * cascades to its children), hydrate each visible descriptor into a * `HydratedItem` for the shared `ItemRenderer` to consume. Equivalent in * spirit to the questionnaire's `hydrateItems` but uses inline section * children instead of a string-keyed field registry, which curing * intentionally doesn't have. */ export declare const hydrateCuring: (state: CuringDescriptorState) => HydratedItem[];