import { ControlTypes } from '../sharedTypes'; export interface SelectProps { arg: { name: string; value: any; options: Array | Record; control: { labels?: Record; }; type: ControlTypes; }; onChange: (value: any) => void; } declare const SelectType: ({ arg, onChange }: SelectProps) => import("react/jsx-runtime").JSX.Element; export default SelectType;