/**
 * Web Drawer Component
 *
 */
import React from 'react';
import type { DrawerContentProps } from './types';
export default function DrawerContent({ modalContent, navContent, headerContent, alignContent, containerPlacement, preventCoreStyle, className, spacing, fullscreen, noAnimation, noAnimationOnMobile, minWidth: minWidthProp, maxWidth: maxWidthProp, ...rest }: DrawerContentProps): React.JSX.Element;
