cf3295213c646d6b64e3196adbaa5f13315260bad6d5c5cf118a2683cc3a16ab94715319d014574c74714e941e5f801e8f17cd18ddacc4115be415f8092f72 642 B

123456789101112131415161718192021
  1. import type { SelectV2Props } from './token';
  2. import type { Option } from './select.types';
  3. export interface Props {
  4. label?: string;
  5. value?: string;
  6. disabled?: string;
  7. options?: string;
  8. }
  9. export declare const defaultProps: Required<Props>;
  10. export declare function useProps(props: Pick<SelectV2Props, 'props'>): {
  11. aliasProps: import("vue").ComputedRef<{
  12. label: string;
  13. value: string;
  14. disabled: string;
  15. options: string;
  16. }>;
  17. getLabel: (option: Option) => any;
  18. getValue: (option: Option) => any;
  19. getDisabled: (option: Option) => any;
  20. getOptions: (option: Option) => any;
  21. };