import React from "react";

//#region src/ScrollableRegion/ScrollableRegion.d.ts
type Labelled = {
  'aria-label': string;
  'aria-labelledby'?: never;
} | {
  'aria-label'?: never;
  'aria-labelledby': string;
};
type ScrollableRegionProps = React.ComponentPropsWithoutRef<'div'> & Labelled;
declare function ScrollableRegion({
  'aria-label': label,
  'aria-labelledby': labelledby,
  children,
  className,
  ...rest
}: ScrollableRegionProps): React.JSX.Element;
//#endregion
export { ScrollableRegion, type ScrollableRegionProps };