UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

10 lines (9 loc) 283 B
import type { ToastState } from '../../schema'; type Props = { key: string; onClose: () => void; onRef: (element?: HTMLDivElement) => void; toastState: ToastState; }; export declare const InternalToast: ({ key, onClose, onRef, toastState }: Props) => any; export {};