import React from "react"; export interface VirtualTableSelectOption { value: string | number; label: string; color?: string; } export declare function VirtualTableSelect(props: { options: VirtualTableSelectOption[]; error?: Error; multiple?: boolean; disabled: boolean; small?: boolean; value: string | number | string[] | number[] | undefined; updateValue: (newValue: (string | number | string[] | number[] | null)) => void; focused: boolean; onBlur?: React.FocusEventHandler; }): React.JSX.Element;