import React from 'react'; export interface InoSelectOption { label: string; value: string | number; element?: React.ReactNode; } export interface InoSelectProps { options: InoSelectOption[]; value?: string | number; onChange?: (value: string | number) => void; placeholder?: string; isActive?: boolean; disabled?: boolean; classNames?: string; showArrow?: boolean; showSelectedIcon?: boolean; onActiveChange?: (index: number) => void; onOpenChange?: (open: boolean) => void; onUp?: () => void; onDown?: () => void; onLeft?: () => void; onRight?: () => void; onBack?: () => void; } export declare const InoSelect: React.FC;