import { AliasToken } from "../theme/interface/alias.js"; import { GenerateStyle } from "../theme/interface/index.js"; import "../theme/internal.js"; import { CSSObject } from "@antdv-next/cssinjs"; //#region src/style/index.d.ts declare const textEllipsis: CSSObject; declare function resetComponent(token: AliasToken, needInheritFontFamily?: boolean): CSSObject; declare function resetIcon(): CSSObject; declare function clearFix(): CSSObject; declare const genLinkStyle: GenerateStyle; declare function genCommonStyle(token: AliasToken, componentPrefixCls: string, rootCls?: string, resetFont?: boolean): CSSObject; declare function genFocusOutline(token: AliasToken, offset?: number): CSSObject; declare function genFocusStyle(token: AliasToken, offset?: number): CSSObject; declare function genIconStyle(iconPrefixCls: string): CSSObject; declare const operationUnit: GenerateStyle; //#endregion export { clearFix, genCommonStyle, genFocusOutline, genFocusStyle, genIconStyle, genLinkStyle, operationUnit, resetComponent, resetIcon, textEllipsis };