/**
 * 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;
