import { StoryObj } from '@storybook/react'; import { default as FancySkeletonGrid } from '../FancySkeletonGrid'; declare const meta: { component: typeof FancySkeletonGrid; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { borderRadius: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; gapColumn: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; gapRow: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; gridAreas: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; gridAreasBreakPoints: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; height: { description: string; control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; width: { description: string; control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;