import { default as React } from 'react'; import { STATE } from '../constants'; export interface ToastContextType { show: (message: string, state: keyof typeof STATE, action?: { label: string; onClick: unknown; }) => void; } export declare const ToastContext: React.Context; export declare const ToastProvider: ({ children }: { children: any; }) => import("react/jsx-runtime").JSX.Element; export declare const useToast: () => ToastContextType;