import React, { HTMLProps } from 'react';
import { MestCss } from "../themes";
export type DrawerOverlayProps = HTMLProps & {
overlayCss?: MestCss;
stopPointerEvents?: boolean;
};
export declare const DrawerOverlay: React.ForwardRefExoticComponent & React.RefAttributes>;