export { default as Custom } from './animations/custom';
export interface BaseAnimation {
    name: string;
    creator: string;
    baseState: any;
    nextState(timestamp: number, state: Object): {
        nextFrame: string;
        state: Object;
    };
}
export declare const Animations: {
    [key: string]: BaseAnimation;
};
export declare const URLAnimation: () => {
    start: (animation: BaseAnimation) => void;
    stop: () => void;
};
