index.d.ts 314 B

12345678
  1. import type { UseComponentStyleResult } from '../../theme/internal';
  2. import { Ref } from 'vue';
  3. export interface ComponentToken {
  4. zIndexPopup: number;
  5. colorBgDefault: string;
  6. }
  7. declare const _default: (prefixCls: Ref<string>, injectStyle: Ref<boolean>) => UseComponentStyleResult;
  8. export default _default;