import { CSSProperties, ReactNode } from "react"; import * as S from "../styled-components"; interface IPopupLayout extends S.IMainCssType { title?: string; visible?: boolean; onOutSideClick?: () => void; ButtonContainerRender?: () => ReactNode; containerStyle?: CSSProperties; smHeight?: string | number; backgroundColor?: string; color?: string; width?: string | number; height?: string | number; } export declare const PopupLayout: React.FC; export default PopupLayout;