@hashicorp/design-system-components
Version:
Helios Design System Components
22 lines (21 loc) • 744 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* SPDX-License-Identifier: MPL-2.0
*/
import type { TemplateOnlyComponent } from '@ember/component/template-only';
import type { WithBoundArgs } from '@glint/template';
import HdsFormHeaderTitle from '../header/title';
import HdsFormHeaderDescription from '../header/description';
export interface HdsFormSectionHeaderSignature {
Blocks: {
default: [
{
Title?: WithBoundArgs<typeof HdsFormHeaderTitle, 'size'>;
Description?: typeof HdsFormHeaderDescription;
}
];
};
Element: HTMLDivElement;
}
declare const HdsFormSectionHeader: TemplateOnlyComponent<HdsFormSectionHeaderSignature>;
export default HdsFormSectionHeader;