UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

16 lines (15 loc) 449 B
/** * MSKCC DSM 2021, 2023 */ import React from 'react'; import { ReactAttr } from '../../types/common'; export declare const translationIds: {}; export interface ListBoxFieldProps extends ReactAttr<HTMLDivElement> { /** * Specify if the parent <ListBox> is disabled */ disabled?: boolean; } export type ListBoxFieldComponent = React.FC<ListBoxFieldProps>; declare const _default: ListBoxFieldComponent; export default _default;