import { type StoryObj } from "@storybook/react-vite"; import { type ComponentProps } from "react"; import { Box } from "../src/components/Box/Box"; declare const meta: { title: string; component: (props: (import("react").PropsWithoutRef> & { as?: C | undefined; _gap?: import("../src/system/Sizes").SpacingKey; align?: "start" | "end" | "center" | "baseline" | "stretch" | "normal"; justify?: "normal" | "start" | "end" | "center" | "between" | "around" | "evenly" | "stretch"; axis?: "x" | "y"; reverse?: boolean; wrap?: boolean; children?: React.ReactNode; className?: string; divider?: React.ReactNode; } & { ref?: import("react").ComponentPropsWithRef["ref"] | undefined; }) & ComponentProps) => import("react").ReactElement | null; parameters: { backgrounds: { default: string; }; }; }; export default meta; type Story = StoryObj; export declare const Base: Story; export declare const Overview: Story; export declare const WithGap: Story; export declare const Veritcal: Story; export declare const JustifyBetween: Story; export declare const AlignEnd: Story; export declare const WithDivider: Story; export declare const Composition: Story; export declare const RefForwarding: Story;