import { StoryObj } from '@storybook/react'; import { TScalingSection } from './TScalingSection.model'; declare const meta: { component: import('react').ForwardRefExoticComponent>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { handleScaling: { description: string; }; onClick: { description: string; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;