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<string, Value>;
export declare class BounceAndSpin extends Base implements CSSAnimation {
    private isProcessablePrimitive;
    private isProcessableValue;
    private isProcessableValues;
    private normaliseValues;
    defaultTheme: Values;
    keyframes: ({ theme }: PluginUtils) => {
        [x: string]: boolean;
    };
    animation: ({ theme }: PluginUtils) => {
        [x: string]: boolean;
    };
}
export {};
