import * as React from 'react';
import { AccessLevel, AdaptableSystemIconName } from '../../types';
export type SelectOption<SelectValue extends unknown> = {
    label: React.ReactNode;
    icon?: AdaptableSystemIconName;
    value: SelectValue;
    isDisabled?: boolean;
};
export type SelectProps<SelectValue extends unknown, IsMulti extends boolean = false> = {
    options: readonly SelectOption<SelectValue>[] | SelectOption<SelectValue>[];
    disabled?: boolean;
    menuPosition?: 'fixed' | 'absolute';
    menuPlacement?: 'auto' | 'bottom' | 'top';
    menuStyle?: React.CSSProperties;
    menuMinWidth?: string | number;
    searchable?: boolean;
    resizable?: boolean;
    isClearable?: boolean;
    closeMenuOnSelect?: boolean;
    hideSelectedOptions?: boolean;
    showHeaderSelectionCheckbox?: boolean;
    isMulti?: IsMulti;
    onChange: (value: IsMulti extends true ? SelectValue[] : SelectValue) => void;
    value: IsMulti extends true ? SelectValue[] : SelectValue;
    placeholder?: string;
    'data-name'?: string;
    'data-id'?: string;
    renderSingleValue?: (option: SelectOption<SelectValue>) => React.ReactNode;
    renderMultipleValues?: (values: SelectValue[], options: {
        focused: boolean;
        placeholder?: string;
    }) => React.ReactNode;
    className?: string;
    isLoading?: boolean;
    onFocus?: () => void;
    onBlur?: () => void;
    accessLevel?: AccessLevel;
    style?: React.CSSProperties;
    styles?: {
        valueContainer?: React.CSSProperties;
        control?: React.CSSProperties;
        container?: React.CSSProperties;
        dropdownIndicator?: React.CSSProperties;
    };
    onInputChange?: (value: string) => void;
    onMenuOpen?: VoidFunction;
    'aria-label'?: string;
    size?: 'small' | 'normal';
    isCreatable?: boolean;
    menuPortalTarget?: HTMLElement;
    onKeyDown?: React.KeyboardEventHandler<HTMLDivElement>;
};
export declare const Select: <SelectValue extends unknown, IsMulti extends boolean = false>(props: SelectProps<SelectValue, IsMulti>) => React.JSX.Element;
