interface Props {
    /** Child components */
    children?: React.ReactNode;
}
export default function Scroller({ children }: Props): import("react/jsx-runtime").JSX.Element;
export {};
