import type { ComponentType, ElementType } from 'react' import type { HTMLAttrs } from './common' export interface ToastLink { href: string text: string LinkRouter?: ElementType linkRouterProps?: Record } export interface ToastProps extends HTMLAttrs { toast?: boolean copy: string headline?: string link?: ToastLink tokens?: Record variant?: Record } export declare const Toast: ComponentType