@hashicorp/design-system-components
Version:
Helios Design System Components
26 lines (25 loc) • 798 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* SPDX-License-Identifier: MPL-2.0
*/
import type { TemplateOnlyComponent } from '@ember/component/template-only';
import HdsButton from '../button/index';
import HdsDropdown from '../dropdown/index';
import HdsLinkStandalone from '../link/standalone';
export interface HdsApplicationStateFooterSignature {
Args: {
hasDivider?: boolean;
};
Blocks: {
default?: [
{
Button?: typeof HdsButton;
Dropdown?: typeof HdsDropdown;
LinkStandalone?: typeof HdsLinkStandalone;
}
];
};
Element: HTMLDivElement;
}
declare const HdsApplicationStateFooter: TemplateOnlyComponent<HdsApplicationStateFooterSignature>;
export default HdsApplicationStateFooter;