UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

45 lines (44 loc) 1.48 kB
import React from 'react'; import { Item, Theme } from './types'; export interface AddSelectBodyProps { className?: string; clearFiltersText?: string; closeIconDescription?: string; columnInputPlaceholder?: string; defaultModifiers?: Array<any>; description?: string; filterByLabel?: string; globalFilterOpts?: Array<any>; globalFiltersIconDescription?: string; globalFiltersLabel?: string; globalFiltersPlaceholderText?: string; globalFiltersPrimaryButtonText?: string; globalFiltersSecondaryButtonText?: string; globalSearchLabel: string; globalSearchPlaceholder?: string; globalSortBy?: Array<any>; illustrationTheme?: Theme; influencerTitle?: string; items?: Item; itemsLabel?: string; metaIconDescription?: string; metaPanelTitle?: string; multi?: boolean; navIconDescription?: string; noResultsDescription?: string; noResultsTitle?: string; noSelectionDescription?: string; noSelectionTitle?: string; normalizedItems?: object; onClose?: () => void; onCloseButtonText?: string; onSubmit?: (selection: any) => void; onSubmitButtonText?: string; open?: boolean; portalTarget?: HTMLElement; searchResultsTitle?: string; sortByLabel?: string; title?: string; useNormalizedItems?: boolean; } export declare const AddSelectBody: React.ForwardRefExoticComponent<AddSelectBodyProps & React.RefAttributes<HTMLDivElement>>;