/**
 * Web Drawer Component
 *
 */
import type { JSX } 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, scrollbarGutter, ...rest }: DrawerContentProps): JSX.Element;
