import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { Theme } from '../types'; export interface StyledBackdropProps { /** * 是否显示 */ visible?: boolean; } interface StyledBackdropComp extends StyledComponentClass & React.HTMLAttributes & StyledBackdropProps, Theme> { } declare const StyledBackdrop: StyledBackdropComp; export default StyledBackdrop;