@hashicorp/design-system-components
Version:
Helios Design System Components
15 lines (14 loc) • 438 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* SPDX-License-Identifier: MPL-2.0
*/
import type { TemplateOnlyComponent } from '@ember/component/template-only';
export interface HdsFormFileInputBaseSignature {
Args: {
id?: string;
ariaDescribedBy?: string;
};
Element: HTMLInputElement;
}
declare const HdsFormFileInputBase: TemplateOnlyComponent<HdsFormFileInputBaseSignature>;
export default HdsFormFileInputBase;