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