import { HTMLAttributes } from "react"; import { BorderProps, ShadowProps, SpaceProps } from "./system"; export declare type VideoProps = { src: string; loop?: boolean; autoPlay?: boolean; } & BorderProps & SpaceProps & ShadowProps & HTMLAttributes; export declare const StyledVideo: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: import("react").ElementType | undefined; } & BorderProps & SpaceProps & ShadowProps & HTMLAttributes, import("react").DetailedHTMLProps, HTMLVideoElement>, {}>; export declare const Video: ({ src, loop, autoPlay, ...props }: VideoProps) => import("@emotion/react/jsx-runtime").JSX.Element;