import { StoryObj } from '@storybook/react-vite'; import { DrawerProps } from './drawer'; import { DrawerRootProps } from './drawer-root'; declare const meta: { title: string; component: import('react').FC; subcomponents: { DrawerRoot: React.ComponentType; DrawerTrigger: React.ComponentType; DrawerTitle: React.ComponentType; }; tags: string[]; render: (args: DrawerProps & DrawerRootProps) => import("react/jsx-runtime").JSX.Element; }; export default meta; type Story = StoryObj; export declare const RightDrawer: Story; export declare const LeftDrawer: Story; export declare const BottomDrawer: Story;