import React, { MouseEvent } from 'react'; interface Props { onClick?: (event: MouseEvent) => void; visible?: boolean; width?: string; } declare const defaultProps: { onClick: () => void; visible: boolean; }; type NativeAttrs = Omit, keyof Props>; export type BackdropProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType void; visible: boolean; }> & Omit, "onClick" | "visible">>; export default _default;