import { ReactNode } from 'react';
export type TDynamicScrollBar = {
    scrollable?: boolean;
    activateScrollbar?: boolean;
    children?: ReactNode;
};
