import React from "react"; export interface DefaultSelectProps { name?: string; label?: string; labelStyles?: React.CSSProperties; options: { value: any; label: string; }[]; placeholder?: string; onChange?: (e: { value: any; label: string; } | null) => void; value?: { value: any; label: string; }; menuIndex?: number; containerStyles?: React.CSSProperties; controlStyles?: string; defaultValue?: { value: any; label: string; }; customColor?: string; disabled?: boolean; } declare const DefaultSelect: { ({ name, label, labelStyles, options, placeholder, onChange, value, menuIndex, containerStyles, controlStyles, defaultValue, customColor, disabled, }: DefaultSelectProps): JSX.Element; defaultProps: { label: undefined; labelStyles: undefined; placeholder: undefined; onChange: () => void; value: undefined; menuIndex: number; containerStyles: undefined; controlStyles: undefined; defaultValue: undefined; customColor: string; }; }; export default DefaultSelect;