import { type MotionProps } from "framer-motion"; import type { ComponentPropsWithRef } from "react"; import { type StyledProps } from "../StyledProps"; export interface BoxProps extends StyledProps, ComponentPropsWithRef<"div"> { as?: React.ElementType; } declare const Box: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, BoxProps>> & string; export interface AnimatedBoxProps extends MotionProps, Omit { } export declare const AnimatedBox: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, "ref"> & import("react").RefAttributes, "ref"> & { ref?: import("react").Ref; }, AnimatedBoxProps>> & string & Omit>, keyof import("react").Component>; export default Box;