import React from 'react'; import type { ToastBaseProps as CommonToastBaseProps, ToastRefHandle, } from '@coinbase/cds-common/overlays/ToastProvider'; import { type BoxProps } from '../layout/Box'; export type ToastBaseProps = CommonToastBaseProps; export type ToastProps = ToastBaseProps & BoxProps; export declare const Toast: React.MemoExoticComponent< ({ ref, ..._props }: ToastProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=Toast.d.ts.map