UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

18 lines (17 loc) 649 B
import { CompoundStylesApiProps, Factory } from '../../core'; import { ModalBaseOverlayProps } from '../ModalBase'; export type DrawerOverlayStylesNames = 'overlay'; export interface DrawerOverlayProps extends ModalBaseOverlayProps, CompoundStylesApiProps<DrawerOverlayFactory> { } export type DrawerOverlayFactory = Factory<{ props: DrawerOverlayProps; ref: HTMLDivElement; stylesNames: DrawerOverlayStylesNames; compound: true; }>; export declare const DrawerOverlay: import("../../core").MantineComponent<{ props: DrawerOverlayProps; ref: HTMLDivElement; stylesNames: DrawerOverlayStylesNames; compound: true; }>;