import * as React from "react"; import "./PromotionEditContainer.scss"; interface IProps { children: React.ReactNode; } interface IPropsContainer { closeBtnLabel: string; children: React.ReactNode; onCloseClick: (e: React.MouseEvent) => void; } declare const PromotionEditContainer: { ({ closeBtnLabel, children, onCloseClick }: IPropsContainer): JSX.Element; Header: ({ children }: IProps) => JSX.Element; Main: ({ children }: IProps) => JSX.Element; Footer: ({ children }: IProps) => JSX.Element; }; export { PromotionEditContainer };