import React, { CSSProperties } from "react"; import * as S from "../styled-components"; export interface IStyledTypes { className?: string; style?: CSSProperties; } declare type TOverFlow = "visible" | "hidden" | "clip" | "scroll" | "auto"; interface IPopup extends S.IMainCssType { type?: "default" | "primary" | "secondary"; onOutSideClick?: () => void; className?: string; smHeight?: string | number; visible?: boolean; width?: string | number; height?: string | number; color?: string; backgroundColor?: string; overflow?: TOverFlow; } export declare const Popup: React.FC; export default Popup;