import React from "react"; import { TToastType } from "./DSToast.types"; interface DSToastProps { type: TToastType; title: React.ReactNode; description?: React.ReactNode; onClose?: () => void; actionLabel?: string; onAction?: () => void; } export declare const DSToast: ({ type, title, description, onClose, actionLabel, onAction, ...props }: DSToastProps) => JSX.Element; export {};