import React, { ReactElement } from 'react';
interface ModalProps {
    visible: boolean;
    title?: string;
    content?: ReactElement | string;
    footer?: ReactElement | string;
    onClose?: () => void;
    className?: string;
    classNameWrapper?: string;
    id?: any;
    classNameContent?: string;
    onFewFunction?: any;
    wrapperModalStyles?: string;
}
export declare const Modal: ({ visible, title, content, footer, onClose, className, classNameWrapper, classNameContent, onFewFunction, wrapperModalStyles, }: ModalProps) => React.JSX.Element;
export {};
