import * as React from 'react'; import { ScrollableContainerCommonProps } from '../../../common'; import {PropsWithChildren} from "react"; export interface ContentProps { className?: string; dataHook?: string; content?: string | React.ReactNode; hideTopScrollDivider?: boolean; hideBottomScrollDivider?: boolean; scrollProps?: ScrollableContainerCommonProps; } export const Content: React.FunctionComponent>;