/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import Component from '@glimmer/component';
import HdsYield from '../../yield/index';
export interface HdsFormSelectBaseSignature {
    Args: {
        isInvalid?: boolean;
        width?: string;
        id?: string;
        ariaDescribedBy?: string;
    };
    Blocks: {
        default: [
            {
                Options?: typeof HdsYield;
            }
        ];
    };
    Element: HTMLSelectElement;
}
export default class HdsFormSelectBase extends Component<HdsFormSelectBaseSignature> {
    get classNames(): string;
}
