import { ReactNode } from 'react'; interface ActionProps { id?: string; label: ReactNode; onClick?: () => void; } interface Props { id?: string; title: ReactNode; description?: ReactNode; action?: ActionProps; } type toastFn = (props: Props) => void; interface useOutput { toast: toastFn; } declare function useToast(): useOutput; export { useToast };