452d739c5fd5c40fe485d55d4c6a10a35e57bf19d1b0140794ec861f442453fc25fa4f39a4bbe176a5cd905c90647c54c5a9fec53ea3d276c2479e2dadc95f 971 B

12345678910111213141516171819
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Icon from './icon.vue';
  3. export declare const iconProps: {
  4. readonly size: {
  5. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
  6. readonly required: false;
  7. readonly validator: ((val: unknown) => boolean) | undefined;
  8. __epPropKey: true;
  9. };
  10. readonly color: {
  11. readonly type: import("vue").PropType<string>;
  12. readonly required: false;
  13. readonly validator: ((val: unknown) => boolean) | undefined;
  14. __epPropKey: true;
  15. };
  16. };
  17. export type IconProps = ExtractPropTypes<typeof iconProps>;
  18. export type IconPropsPublic = __ExtractPublicPropTypes<typeof iconProps>;
  19. export type IconInstance = InstanceType<typeof Icon> & unknown;