import { StoryObj } from '@storybook/react'; import { default as FancyVideoSource } from '../FancyVideoSource'; declare const meta: { component: typeof FancyVideoSource; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { type: { description: string; control: { type: "text"; }; }; src: { description: string; control: { type: "text"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;