import React, { PropsWithChildren, type JSX } from 'react'; import type { BaseProps } from '../../component-helpers'; export type BoxProps = React.HTMLAttributes & { as?: T | 'div' | 'span' | 'section'; } & (T extends 'span' ? BaseProps : T extends 'section' ? BaseProps : T extends 'section' ? BaseProps : BaseProps); /** * An animation-helper component that can be rendered as any HTML element. * Use Animate to wrap any element and apply an animation to it. */ export declare function Animate({ animate, as, children, className, style, ...rest }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;