///
import { StyleObject } from "styletron-react";
export declare type SelectOverridesT = {
Wrap?: StyleObject;
OptionList?: StyleObject;
Option?: StyleObject;
OptionLabel?: StyleObject;
};
export declare type SelectOption = {
label: string | React.ReactNode;
key?: string;
disabled?: boolean;
endEnhancer?: React.ReactNode;
};
export declare type SelectPropsT = {
options?: Array;
placeholder?: string;
active?: number;
isOpen?: boolean;
animate?: boolean;
onClick?: (event: React.MouseEvent) => void;
onChange?: (newValue: number) => void;
onClickOutside?: (event?: React.MouseEvent) => void;
overrides?: SelectOverridesT;
};