import React, { ReactNode } from 'react'; import { BulmaColor, BulmaSize } from './utils'; export interface SelectOption { label: string; value: string; } export interface SelectProps { color?: BulmaColor; size?: BulmaSize; loading?: boolean; rounded?: boolean; options: SelectOption[]; placeholder?: string; icon?: ReactNode; value?: string; onChange?: (e: React.ChangeEvent) => void; } export declare function Select({ color, size, loading, rounded, placeholder, icon, options, value, onChange, }: SelectProps): JSX.Element;