import './MixPopoverAnimate.css'; import { Direction } from '../../components/Popover/Popover'; export type Animate = 'entered' | 'entering' | 'exiting' | 'exited' | 'unmounted' | 'enter' | 'enterActive' | 'enterDone' | 'exit' | 'exitActive' | 'exitDone'; type Mods = { animate?: Animate; direction?: Direction; }; type CnMixPopoverAnimate = (mods?: Mods | null, mix?: Array) => string; export declare const cnMixPopoverAnimate: CnMixPopoverAnimate; export declare const cnMixPopoverAnimateForCssTransition: import("../../utils/cnForCssTransition").CSSTransitionClassNames; export declare const animateTimeout = 200; export {};