/// import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: { ({ video, playsinline, src, autoplay, muted, loop, image, controls, onError, layout, className, classNames: _classNames, hidePausePlayButton, backgroundVideoQuality, pauseButtonPositionClassName, ...rest }: { [x: string]: any; video: any; playsinline: any; src: any; autoplay: any; muted: any; loop: any; image: any; controls: any; onError: any; layout: any; className: any; classNames: any; hidePausePlayButton?: boolean | undefined; backgroundVideoQuality: any; pauseButtonPositionClassName?: string | undefined; }): JSX.Element | null; propTypes: { autoplay: import("prop-types").Requireable; muted: import("prop-types").Requireable; loop: import("prop-types").Requireable; src: import("prop-types").Requireable; controls: import("prop-types").Requireable; mpcVideo: import("prop-types").Requireable; onError: import("prop-types").Requireable<(...args: any[]) => any>; layout: import("prop-types").Requireable; className: import("prop-types").Requireable; hidePausePlayButton: import("prop-types").Requireable; playsinline: import("prop-types").Requireable; image: import("prop-types").Requireable; video: import("prop-types").Requireable>; classNames: import("prop-types").Requireable; objectPosition: import("prop-types").Requireable; }>>; backgroundVideoQuality: import("prop-types").Requireable; }; defaultProps: { autoplay: boolean; muted: boolean; controls: boolean; loop: boolean; layout: string; className: string; hidePausePlayButton: boolean; playsinline: boolean; classNames: { objectFit: string; objectPosition: string; }; backgroundVideoQuality: string; onError: () => void; }; }; argTypes: { className: { control: boolean; }; }; parameters: { layout: string; description: string; }; }; export default meta; type Story = StoryObj; export declare const Demo: Story;