import { type StoryObj } from "@storybook/react-vite"; declare const meta: { title: string; component: import("react").FC<{ lineStyle?: "solid" | "dashed" | null; dotStyle?: "regular" | "emphasized" | null; } & Omit & { as?: import("react").ElementType | 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?: any; } & 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").SIZES; backgroundColor?: import("../src/types/general.types").BackgroundColor; borderRadius?: keyof typeof import("../src").SIZES; borderRadiusLeft?: keyof typeof import("../src").SIZES; borderRadiusRight?: keyof typeof import("../src").SIZES; hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor; cursor?: import("../src/types/general.types").CursorOption; } & { ref?: any; }>; parameters: { backgrounds: { default: string; }; }; }; export default meta; type Story = StoryObj; export declare const Base: Story; export declare const Dashed: Story; export declare const EmpasizedDot: Story; export declare const RegularDot: Story;