import { StoryObj } from '@storybook/react';
import { default as FancyVideo } from '../FancyVideo';
declare const meta: {
    component: typeof FancyVideo;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        muted: {
            description: string;
            control: {
                type: "boolean";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        autoPlay: {
            control: {
                type: "boolean";
            };
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        aspectRatio: {
            description: string;
            control: {
                type: "text";
            };
        };
        darken: {
            control: {
                type: "range";
                min: number;
                max: number;
                step: number;
            };
            description: string;
        };
        children: {
            description: string;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
