/// import { IEcomContext, IEcomStore } from "./types"; import OverlayType from "./constants/overlay-type"; interface IOverlayProps extends IEcomContext, IEcomStore { onHideOverlay: () => void; onProceedToNextStep: () => void; onPreviousStepClick: () => void; onDisplayOverlay: (string: any) => void; type: OverlayType; } declare const _default: (props: IOverlayProps) => JSX.Element; export default _default;