/** @packageDocumentation * @module Widget */ import "./Content.scss"; import * as React from "react"; import { CommonProps, NoChildrenProps } from "@bentley/ui-core"; import { HorizontalAnchor } from "../Stacked"; /** Properties of [[WidgetContent]] component. * @alpha */ export interface WidgetContentProps extends CommonProps, NoChildrenProps { /** Describes to which side the widget of this content is anchored. */ anchor: HorizontalAnchor; /** Content container ref. */ containerRef?: React.Ref; /** Actual content. */ content?: React.ReactNode; } /** Scrollable widget content. Used by [[Stacked]] component. * @alpha */ export declare class WidgetContent extends React.PureComponent { private _content; private _scrollTop; private _scrollLeft; componentDidUpdate(): void; render(): JSX.Element; private _handleScroll; } //# sourceMappingURL=Content.d.ts.map