/// <reference types="react" />
import "@fontsource/ibm-plex-sans";
export type INotificationType = {
    type?: "short" | "large";
    title?: string;
    status: "info" | "success" | "warning" | "error";
    message?: string;
    actived?: boolean;
    onClose?: () => void;
    buttons?: {
        label?: string;
        onClick?: () => void;
    };
    children?: React.ReactNode;
    noRadius?: boolean;
    zindex?: string;
    top?: string;
    right?: string;
    transparent?: string;
    position?: boolean;
};
export declare const Notification: (props: INotificationType) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map