import * as React from "react";
import "./modale.css";
interface ModaleProps {
    title: string;
    content: string;
    onClose: () => void;
    error?: boolean;
    ariaLabel?: string;
    children?: React.ReactNode;
}
export declare function Modale({ title, content, onClose, error, ariaLabel, children }: ModaleProps): React.JSX.Element;
export {};
