import { StoryObj } from '@storybook/react';
import { default as FancyAlignBox } from '../FancyAlignBox';
declare const meta: {
    component: typeof FancyAlignBox;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        padding: {
            description: string;
            control: {
                type: "text";
            };
        };
        margin: {
            description: string;
            control: {
                type: "text";
            };
        };
        externalStyle: {
            description: string;
            control: {
                type: "object";
            };
        };
        as: {
            description: string;
            control: {
                type: "text";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        gap: {
            description: string;
            control: {
                type: "text";
            };
        };
        fitBox: {
            description: string;
            control: {
                type: "boolean";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
