import React from 'react'; import { Item, Theme } from './types'; export interface AddSelectBodyProps { className?: string; clearFiltersText?: string; closeIconDescription?: string; columnInputPlaceholder?: string; defaultModifiers?: Array; description?: string; filterByLabel?: string; globalFilterOpts?: Array; globalFiltersIconDescription?: string; globalFiltersLabel?: string; globalFiltersPlaceholderText?: string; globalFiltersPrimaryButtonText?: string; globalFiltersSecondaryButtonText?: string; globalSearchLabel: string; globalSearchPlaceholder?: string; globalSortBy?: Array; illustrationTheme?: Theme; influencerTitle?: string; items?: Item; itemsLabel?: string; metaIconDescription?: string; metaPanelTitle?: string; multi?: boolean; navIconDescription?: string; noResultsDescription?: string; noResultsTitle?: string; noSelectionDescription?: string; noSelectionTitle?: string; noTearsheet?: boolean; 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>; //# sourceMappingURL=AddSelectBody.d.ts.map