/** * Creates a keyframe animation and returns a unique name for it. * * @param {TemplateStringsArray} strings - The static parts of the template literal. * @param {...any} interpolations - The dynamic parts of the template literal. * @returns {string} A unique name for the generated keyframe animation. * * @example * const fadeIn = keyframes` * from { opacity: 0; } * to { opacity: 1; } * `; * * // Use the returned name in your styled component * const FadeInDiv = styled.div` * animation: ${fadeIn} 1s ease-in; * `; */ declare const keyframes: (strings: TemplateStringsArray, ...interpolations: Array) => string; export default keyframes; //# sourceMappingURL=keyframes.d.ts.map