import React from 'react'; import PropTypes from 'prop-types'; import { StyledSelectProps } from './StyledSelect'; export declare const makeTruncatedValueAllSelectedLabelContainer: (allSelectedNode: React.ReactNode) => (props: { selectProps: { value?: Array; options?: Array; }; children: React.ReactNode[]; }) => React.JSX.Element; export declare const TruncatedValueContainer: { (props: any): React.JSX.Element; propTypes: { selectProps: PropTypes.Requireable; children: PropTypes.Requireable; }; }; export declare const getSelectFilterStyles: (stylesFromProps: any) => any; /** * A superset of `StyledSelect` with custom styles, to use for selects that contains * filters for lists. */ export declare const StyledSelectFilter: (props: StyledSelectProps) => React.JSX.Element;