export default AnimationList;
declare class AnimationList extends React.Component<any, any, any> {
    static propTypes: {
        animations: PropTypes.Requireable<any[]>;
        onEdit: PropTypes.Requireable<(...args: any[]) => any>;
        onDelete: PropTypes.Requireable<(...args: any[]) => any>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
