import React from 'react';
import type { ModalInnerProps } from '../../modal/parts/ModalInner';
type DrawerBodyProps = {
    /**
     * Give the inner content wrapper a class name (maps to `dnb-drawer__body`).
     */
    className?: string;
} & ModalInnerProps;
export default function DrawerBody({ className, ref, ...props }: DrawerBodyProps & React.HTMLProps<HTMLElement>): import("react/jsx-runtime").JSX.Element;
export {};
