import type { Meta, StoryObj } from '@storybook/react'; import { SidebarLayout } from './SidebarLayout'; /** * `SidebarLayout` has `` and ``, which are column flex box themselves. * Sidebar width and background color are configurable. * Sidebar width and background color are configurable. ```javascript import { SidebarLayout } from "@galaxy-ds/core"; ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const SidebarWidth: Story; export declare const SidebarColour: Story;