import { StyleOptions } from '../../types'; export interface AnimationNameProps { /** * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. * * @see https://developer.mozilla.org/docs/Web/CSS/animation-name */ style$AnimationName: T; } export declare const animationName: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;