/** @packageDocumentation * @module Widget */ import "./Content.scss"; import * as React from "react"; /** Properties of [[ScrollableWidgetContent]] component. * @internal */ export interface ScrollableWidgetContentProps { /** Optional unique identifier for item. If defined it will be added to DOM Element attribute as data-item-id */ itemId?: string; providerId?: string; children?: React.ReactNode; } /** Component that enables widget content scrolling. * @internal */ export declare function ScrollableWidgetContent(props: ScrollableWidgetContentProps): JSX.Element; //# sourceMappingURL=Content.d.ts.map