import { PartialBy } from '../../../type-utils'; import { PrefabComponentOption, ValueDefault, ValueRef } from '../../types/options'; type OptionProducer = (key: string) => PrefabComponentOption; type RedundantKeys = 'type' | 'key' | 'label'; export type Attributes = PartialBy, 'value'> | Omit; export declare const dropdown: (label: string, options: [string, string][], attrs?: Attributes) => OptionProducer; export {};