import { CSSProperties } from 'react';
import { StatusType, EventType, Theme } from '../../types';
type SelectProps = {
    theme: Theme;
    defaultText: string;
    defaultAll: string;
    optionsList: EventType[] | StatusType[];
    multiselect?: boolean;
    selectedOptions?: EventType[] | StatusType[];
    className?: string;
    style?: CSSProperties;
    accentColor: string;
    dataTestid?: string;
    onOptionSelect?: (selectedOption: (EventType | StatusType)[]) => void;
};
declare function Select(props: SelectProps): import("react/jsx-runtime").JSX.Element;
export default Select;
