keyframes.d.ts
358 Bytes
import { CSSInterpolation } from '@emotion/serialize';
type Keyframes = {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare function keyframes(template: TemplateStringsArray, ...args: CSSInterpolation[]): Keyframes;
export declare function keyframes(...args: CSSInterpolation[]): Keyframes;
export {};