export namespace keyframes { let fadeIn: { '0%': string; '100%': string; }; let fadeOut: { '0%': string; '100%': string; }; let slideDown: { '0%': string; '100%': string; }; let blink: { '0%, 100%': string; '50%': string; }; let highlight: { '0%': string; '100%': string; }; let shimmer: { '0%': string; '100%': string; }; let popupScaleIn: { '0%': string; '100%': string; }; let popupScaleOut: { '0%': string; '100%': string; }; let slideInLeft: { '0%': string; '100%': string; }; let slideOutLeft: { '0%': string; '100%': string; }; let slideInRight: { '0%': string; '100%': string; }; let slideOutRight: { '0%': string; '100%': string; }; let progressIndeterminate: { '0%': string; '60%': string; '100%': string; }; let progressIndeterminateShort: { '0%': string; '60%': string; '100%': string; }; } /** * Utilities that need CSS properties beyond the `animation` shorthand * emitted by Tailwind v4 from `--animate-*`. Serialized into * `@layer components` in `dist/v4/globals.css`. */ export const animateExtras: { 'animate-popup-scale-in': { 'transform-origin': string; }; 'animate-popup-scale-out': { 'transform-origin': string; }; }; declare namespace _default { export { keyframes }; export { animateExtras }; } export default _default; //# sourceMappingURL=keyframes.d.ts.map