import { type PluginUtils } from 'tailwindcss/types/config'; import { type CSSAnimation } from '@/css-animations'; import { Base } from '@/css-animations/base'; type Value = [string, string]; type Values = Record; export declare class Bounce extends Base implements CSSAnimation { private isProcessablePrimitive; private isProcessableValue; private isProcessableValues; private normaliseValues; defaultTheme: Values; keyframes: ({ theme }: PluginUtils) => {}; animation: ({ theme }: PluginUtils) => {}; } export {};