import React, { HTMLAttributes } from 'react';
/**
* @interface Base defintion of SkodaFlow ContentDiv component independent on core implementation.
*/
export interface ContentDivProps extends HTMLAttributes {
setIsOverFlowing: React.Dispatch>;
className?: string;
modalLoadedCallback?: (isLoaded: boolean) => void;
}
/**
* @description SkodaFlow ContentDiv component
* @param props ContentDivProps
* @returns React Functional Component
*/
export declare const ContentDiv: ({ children, setIsOverFlowing, className, modalLoadedCallback }: ContentDivProps) => import("react/jsx-runtime").JSX.Element;