export default ConnectedScrollable;
/**
 * `Scrollable` is a layout component that content in a scrollable container.
 *
 * @example
 * ```jsx
 * import { __experimentalScrollable as Scrollable } from `@gechiui/components`;
 *
 * function Example() {
 * 	return (
 * 		<Scrollable style={ { maxHeight: 200 } }>
 * 			<div style={ { height: 500 } }>...</div>
 * 		</Scrollable>
 * 	);
 * }
 * ```
 */
declare const ConnectedScrollable: import("../ui/context").GeChiUIComponent<"div", import("./types").Props, true>;
//# sourceMappingURL=component.d.ts.map