import type { AriaToastProps } from '@react-aria/toast'; import React from 'react'; import type { ToastState } from '@react-stately/toast'; interface ToastProps extends AriaToastProps { state: ToastState; } declare const Toast: ({ state, ...props }: ToastProps) => import("react/jsx-runtime").JSX.Element; export { Toast }; //# sourceMappingURL=Toast.d.ts.map