index.d.ts 528 B

123456789101112
  1. import type { GetDefaultToken } from '../../theme/internal';
  2. /** Component only token. Which will handle additional calculation of alias token */
  3. export interface ComponentToken {
  4. /**
  5. * @desc 弹出层的 z-index
  6. * @descEN z-index of popup
  7. */
  8. zIndexPopup: number;
  9. }
  10. export declare const prepareComponentToken: GetDefaultToken<'BackTop'>;
  11. declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: React.ReactElement) => React.ReactElement, string, string];
  12. export default _default;