import React, { HTMLAttributes } from "react"; import { Colors } from "../colors"; export interface ModalProps extends HTMLAttributes { title?: string; onClose?: () => void; footer?: React.ReactNode; show?: boolean; fullWidth?: boolean; scollable?: boolean; size?: 'lg' | 'sm' | 'default'; statusColor?: Colors; } declare const Modal: ({ className, children, title, footer, show, style, onClose, fullWidth, scollable, statusColor, size, ...props }: ModalProps) => React.JSX.Element; export interface AlertModalProps { title: string; message: string; cancelText?: string; okText?: string; onConfirm?: (ev: any) => void; onCancel?: (ev: any) => void; } export declare const AlertModal: React.FC; export declare const SuccessModal: React.FC; export default Modal;