import { type css, type keyframes } from '@emotion/css'; type EmotionInstance = Readonly<{ css: typeof css; keyframes: typeof keyframes; }>; export default function createClassName({ css, keyframes }: EmotionInstance): string; export {};