/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import Component from '@glimmer/component';
import type { HdsIconSignature } from '../../icon/index';
import type { HdsFormRadioBaseSignature } from '../../form/radio/base';
export interface HdsDropdownListItemRadioSignature {
    Args: HdsFormRadioBaseSignature['Args'] & {
        count?: string | number;
        icon?: HdsIconSignature['Args']['name'];
        id?: string;
    };
    Blocks: {
        default: [];
    };
    Element: HdsFormRadioBaseSignature['Element'];
}
export default class HdsDropdownListItemRadio extends Component<HdsDropdownListItemRadioSignature> {
    get id(): string;
}
