UNPKG

next

Version:

The React Framework

8 lines (7 loc) 302 B
import * as React from 'react'; export type ToastProps = React.HTMLProps<HTMLDivElement> & { children?: React.ReactNode; onClick?: () => void; className?: string; }; export declare const Toast: React.ForwardRefExoticComponent<Omit<ToastProps, "ref"> & React.RefAttributes<HTMLDivElement>>;