import { InputHTMLAttributes } from 'react';
export type INotificationType = InputHTMLAttributes & {
type?: "short" | "large";
title?: string;
status: "info" | "Success" | "Warning" | "Error";
message?: string;
actived?: boolean;
buttonHeader?: {
label?: string;
onClick?: () => void;
};
children?: React.ReactNode;
};
export declare const Notification: (props: INotificationType) => import("react/jsx-runtime").JSX.Element;