import { StoryObj } from '@storybook/react';
import { default as FancyGridTemplate } from '../FancyGridTemplate';
declare const meta: {
    component: typeof FancyGridTemplate;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        gridAreas: {
            description: string;
            defaultValue: never[];
            control: {
                type: "object";
            };
        };
        gridAreasBreakPoints: {
            description: string;
            defaultValue: never[];
            control: {
                type: "object";
            };
        };
        gapColumn: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "number";
            };
        };
        gapRow: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "number";
            };
        };
        width: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "text";
            };
        };
        height: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "text";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
