import { BaseProps } from "./Base"; import { AspectRatioType } from "./AspectRatio"; import { BoxProps } from "@specimen/foundation"; export interface AnimatedBaseProps extends BaseProps, Omit { autoplay?: boolean; loop?: boolean; aspectRatio?: AspectRatioType; fallback: string; } export declare const AnimatedBase: ({ name, fallback, autoplay, loop, alt, aspectRatio, ...props }: AnimatedBaseProps) => import("@emotion/react/jsx-runtime").JSX.Element;