/************ Processor: ts ************/ import * as dependency_0 from 'react'; // FILE: container.d.tsx declare namespace ns_container { import HTMLAttributes = dependency_0.HTMLAttributes; import ReactNode = dependency_0.ReactNode; type props = { onScrollY?: any; onScrollX?: any; className?: HTMLAttributes["className"]; children: ReactNode; }; /** * It's a React component that uses the PerfectScrollbar library to create a scrollbar that can be * customized with CSS. * @param {props} props - props * @returns A function that returns a JSX.Element */ function BeyondScrollContainer(props: props): JSX.Element; } export import BeyondScrollContainer = ns_container.BeyondScrollContainer; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };