import { Meta, StoryObj } from '@storybook/react-vite'; import { Template } from './Template'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Main Story for the Template component. This must contains the `args` * and `parameters` properties in this object. */ export declare const WithControls: Story; export declare const FullExample: Story; export declare const NarrowExample: () => import("react/jsx-runtime").JSX.Element; export declare const FeaturedContentExample: { name: string; render: () => import("react/jsx-runtime").JSX.Element; }; export declare const ComplexExample: () => import("react/jsx-runtime").JSX.Element;