mixins.d.ts 591 B

123456789
  1. import type { CSSObject } from '../../_util/cssinjs';
  2. import type { TypographyToken } from '.';
  3. import type { GenerateStyle } from '../../theme/internal';
  4. export declare const getTitleStyles: GenerateStyle<TypographyToken, CSSObject>;
  5. export declare const getLinkStyles: GenerateStyle<TypographyToken, CSSObject>;
  6. export declare const getResetStyles: () => CSSObject;
  7. export declare const getEditableStyles: GenerateStyle<TypographyToken, CSSObject>;
  8. export declare const getCopiableStyles: GenerateStyle<TypographyToken, CSSObject>;
  9. export declare const getEllipsisStyles: () => CSSObject;