import { StoryObj } from '@storybook/react';
import { default as FancyGridItem } from '../FancyGridItem';
declare const meta: {
    component: typeof FancyGridItem;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        gridSpace: {
            description: string;
            defaultValue: string;
            control: {
                type: "number";
            };
        };
        breakpoints: {
            description: string;
            defaultValue: never[];
            control: {
                type: "object";
            };
        };
        gridColumn: {
            description: string;
            control: {
                type: "text";
            };
        };
        gridRow: {
            description: string;
            control: {
                type: "text";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
