@carbon/react
Version:
React components for the Carbon Design System
18 lines (17 loc) • 577 B
TypeScript
/**
* Copyright IBM Corp. 2016, 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React, { type HTMLAttributes } from 'react';
export declare const translationIds: {};
export interface ListBoxFieldProps extends HTMLAttributes<HTMLDivElement> {
/**
* Specify if the parent <ListBox> is disabled
*/
disabled?: boolean;
}
export type ListBoxFieldComponent = React.FC<ListBoxFieldProps>;
declare const _default: ListBoxFieldComponent;
export default _default;