import { CompoundStylesApiProps, Factory } from '../../core'; import { ModalBaseBodyProps } from '../ModalBase'; export type DrawerBodyStylesNames = 'body'; export interface DrawerBodyProps extends ModalBaseBodyProps, CompoundStylesApiProps { } export type DrawerBodyFactory = Factory<{ props: DrawerBodyProps; ref: HTMLDivElement; stylesNames: DrawerBodyStylesNames; compound: true; }>; export declare const DrawerBody: import("../..").MantineComponent<{ props: DrawerBodyProps; ref: HTMLDivElement; stylesNames: DrawerBodyStylesNames; compound: true; }>;