UNPKG

@hashicorp/design-system-components

Version:
26 lines (25 loc) 798 B
/** * 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;