import React from 'react'; import './assets/Backdrop.scss'; export declare const Backdrop: React.FC; export interface BackdropProps { /** * Show and hide backdrop */ show?: boolean; /** * backdrop click handler */ backdropClickHandler?: (e: React.MouseEvent) => void; }