import { type AnimationControls } from 'motion'; type animateFrameAssemblerProps = { element: HTMLElement | SVGElement; duration: number; isEntering?: boolean; }; declare const animateFrameAssembler: (props: animateFrameAssemblerProps) => AnimationControls; export type { animateFrameAssemblerProps }; export { animateFrameAssembler };