import { type StoryObj } from "@storybook/react-vite"; declare const meta: { title: string; component: import("react").FC & Partial> & { as?: import("react").ElementType | undefined; elevation?: "base" | "small" | "medium" | "large" | "drag" | "surface" | "extraLarge"; width?: "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | keyof typeof import("../src/index").SIZES; backgroundColor?: import("../src/types/general.types").BackgroundColor; borderRadius?: keyof typeof import("../src/index").SIZES; borderRadiusLeft?: keyof typeof import("../src/index").SIZES; borderRadiusRight?: keyof typeof import("../src/index").SIZES; hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor; cursor?: import("../src/types/general.types").CursorOption; } & { ref?: any; }>> & { Aside: import("react").FC, "ref">, "open">>; }; tags: "new"[]; parameters: { layout: string; }; }; export default meta; type Story = StoryObj; export declare const Closed: Story; export declare const Open: Story; export declare const ComposedWithLayout: Story;