UNPKG

@hashicorp/design-system-components

Version:
19 lines (18 loc) 598 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import type { TemplateOnlyComponent } from '@ember/component/template-only'; import HdsFormSectionMultiFieldGroupItem from './item'; export interface HdsFormSectionMultiFieldGroupSignature { Blocks: { default: [ { Item?: typeof HdsFormSectionMultiFieldGroupItem; } ]; }; Element: HTMLDivElement; } declare const HdsFormSectionMultiFieldGroup: TemplateOnlyComponent<HdsFormSectionMultiFieldGroupSignature>; export default HdsFormSectionMultiFieldGroup;