@hashicorp/design-system-components
Version:
Helios Design System Components
24 lines (23 loc) • 737 B
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
import type { HdsIconSignature } from '../../icon';
import type { HdsFormRadioBaseSignature } from '../../form/radio/base.ts';
export interface HdsDropdownListItemRadioSignature {
Args: HdsFormRadioBaseSignature['Args'] & {
count?: string | number;
icon?: HdsIconSignature['Args']['name'];
};
Blocks: {
default: [];
};
Element: HdsFormRadioBaseSignature['Element'];
}
export default class HdsDropdownListItemRadio extends Component<HdsDropdownListItemRadioSignature> {
/**
* Determines the unique ID to assign to the radio control
*/
get id(): string;
}