import { CSSObject } from "@antdv-next/cssinjs"; //#region src/style/motion/util.d.ts declare function genNoMotionStyle(): CSSObject; /** * Flat variant for call sites already nested inside a pseudo-element * selector, where the `&::before` expansion of `genNoMotionStyle` would * emit invalid selectors like `.foo::before::before` (rejected by * lightningcss during the docs build). */ declare function genNoMotionRawStyle(): CSSObject; //#endregion export { genNoMotionRawStyle, genNoMotionStyle };