SingleSelector.d.ts 583 B

123456789
  1. import type { InnerSelectorProps } from './interface';
  2. import type { VueNode } from '../../_util/type';
  3. interface SelectorProps extends InnerSelectorProps {
  4. inputElement: VueNode;
  5. activeValue: string;
  6. optionLabelRender: Function;
  7. }
  8. declare const SingleSelector: import("vue").DefineComponent<SelectorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<SelectorProps>, {}>;
  9. export default SingleSelector;