import { StoryObj } from '@storybook/react';
import { default as Fieldset } from '../Fieldset';
declare const meta: {
    component: typeof Fieldset;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        alignLegend: {
            description: string;
            control: {
                type: "select";
                options: string[];
            };
        };
        legend: {
            description: string;
            control: {
                type: "text";
            };
        };
        typographySettings: {
            description: string;
            control: {
                type: "object";
            };
        };
        disabled: {
            description: string;
            control: {
                type: "boolean";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
