import { Ref } from 'react';
type UseAnimationParamsType = {
    animated: boolean;
};
type UseAnimationResponseType = {
    boxesAnimationDone: boolean;
    labelAnimationDone: boolean;
    ref?: Ref<HTMLDivElement> | undefined;
};
export declare const useAnimation: (props: UseAnimationParamsType) => UseAnimationResponseType;
export {};
