import { StoryObj } from '@storybook/react';
import { default as DisabledBox } from '../DisabledBox';
declare const meta: {
    component: typeof DisabledBox;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        disabled: {
            description: string;
            type: "boolean";
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
