import { StoryObj } from '@storybook/react'; import { default as AutoSizingBox } from '../AutoSizingBox'; declare const meta: { component: typeof AutoSizingBox; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { children: { description: string; control: { type: "object"; }; table: { category: string; }; }; startHeight: { description: string; control: { type: "number"; }; }; startWidth: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; adjustHeight: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; adjustWidth: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;