import * as tailwindcss_types_config from 'tailwindcss/types/config'; declare type AnimationDelayKeys = 0 | 75 | 100 | 150 | 200 | 300 | 500 | 700 | 1000 | string; declare type AnimationDurationKeys = 0 | 75 | 100 | 150 | 200 | 300 | 400 | 500 | 700 | 1000 | 2000 | 3000 | string; declare type AnimationKeys = 'fadein' | 'fadeout' | 'slidedown' | 'slideup' | 'scalein' | 'fadeinleft' | 'fadeoutleft' | 'fadeinright' | 'fadeoutright' | 'fadeinup' | 'fadeoutup' | 'fadeindown' | 'fadeoutdown' | 'width' | 'flip' | 'flipup' | 'flipleft' | 'flipright' | 'zoomin' | 'zoomindown' | 'zoominleft' | 'zoominright' | 'zoominup' | string; declare module 'tailwindcss/types/config' { interface ThemeConfig { colors: ResolvableTo; keyframes: ResolvableTo>>; animation: ResolvableTo>; animationDelay: ResolvableTo>; animationDuration: ResolvableTo>; animationOpacity?: ThemeConfig['opacity']; animationTranslate?: ThemeConfig['spacing']; animationScale?: ResolvableTo; animationRotate?: ResolvableTo; } } declare const _default: { handler: tailwindcss_types_config.PluginCreator; config?: Partial; }; export { _default as default };