import React from 'react';
import { ReactComponentLike } from 'prop-types';
export interface AnimationItem {
    id: string;
    icon: ReactComponentLike;
    tooltip: string;
}
interface AnimationWindowControlProps {
    animationWindow?: string;
    setFilterAnimationWindow: (id: string) => void;
    toggleAnimationWindowControl: () => void;
    height?: string;
    animationItems: {
        [key: string]: AnimationItem;
    };
    btnStyle: any;
    showAnimationWindowControl: boolean;
}
declare function AnimationWindowControlFactory(): React.FC<AnimationWindowControlProps>;
export default AnimationWindowControlFactory;
