/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import Component from '@glimmer/component';
import type { HdsIconSignature } from '../../icon/index';
import type { HdsInteractiveSignature } from '../../interactive/index';
export interface HdsDropdownListItemCheckmarkSignature {
    Args: HdsInteractiveSignature['Args'] & {
        count?: string | number;
        icon?: HdsIconSignature['Args']['name'];
        selected?: boolean;
    };
    Blocks: {
        default: [];
    };
    Element: HdsInteractiveSignature['Element'];
}
export default class HdsDropdownListItemCheckmark extends Component<HdsDropdownListItemCheckmarkSignature> {
    get classNames(): string;
}
