import React from 'react'; import { AppLayoutProps } from '../interfaces'; export interface ContentWrapperProps { className?: string; style?: React.CSSProperties; contentType: AppLayoutProps.ContentType; children?: React.ReactNode; isMobile: boolean; navigationPadding: boolean; toolsPadding: boolean; disablePaddings?: boolean; contentWidthStyles?: React.CSSProperties; } declare const ContentWrapper: React.ForwardRefExoticComponent>; export default ContentWrapper;