UNPKG

@hashicorp/design-system-components

Version:
20 lines (19 loc) 662 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import type { TemplateOnlyComponent } from '@ember/component/template-only'; export interface HdsFormSuperSelectAfterOptionsSignature { Args: { clearSelected: () => void; content?: string; resultCountMessage?: string; selectedCount?: string; showAll: () => void; showNoSelectedMessage?: boolean; showOnlySelected?: boolean; showSelected: () => void; }; } declare const HdsFormSuperSelectAfterOptions: TemplateOnlyComponent<HdsFormSuperSelectAfterOptionsSignature>; export default HdsFormSuperSelectAfterOptions;