import React from "react"; declare type TNotificationType = "success" | "failure" | "warning"; interface IProps { type: TNotificationType; title: React.ReactNode; content?: React.ReactNode; actionLabel?: string; autoClose?: boolean; onClose?: () => void; onActionClick?: () => void; } export declare const DSNotification: ({ type, title, content, actionLabel, autoClose, onClose, onActionClick, ...props }: IProps) => JSX.Element; export {};