import React from 'react';
export type BackdropProps = {
    open: boolean;
    onClickOutside: VoidFunction;
};
declare const Backdrop: React.FC<BackdropProps>;
export { Backdrop };
