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