import type { TApiErrorNotificationOptions } from "../types.js"; /** * Dispatch an API error notification. * * @example * const showApiErrorNotification = useShowApiErrorNotification(); * showApiErrorNotification({ errors }); */ export default function useShowApiErrorNotification(): (options: TApiErrorNotificationOptions) => import("@commercetools-frontend/notifications").TAddNotificationAction | undefined; } & import("@commercetools-frontend/notifications").TNotification>;