import { CSSProperties } from 'react'; import { TObjectFit } from '../../../const/common'; import './Overlayer.less'; interface IOverlayerProps { style?: CSSProperties; className?: string; showOverlayer?: boolean; background?: string; fit?: TObjectFit; defaultSrc?: string; onError?: (event?: object) => void; } export default function Overlayer(props: IOverlayerProps): import("react/jsx-runtime").JSX.Element; export {};