import React from 'react'; import type { ToastProps, ToastState } from './types'; interface ToastWrapperProps extends Pick { children: React.ReactNode; showCloseButton?: boolean; setState: (state: ToastState) => void; } type VariantProps = Pick; export declare function SuccessToast({ children, action, setState }: VariantProps): React.JSX.Element; export declare function ErrorToast({ children, action, setState }: VariantProps): React.JSX.Element; export declare function LoadingToast({ children, action, setState }: VariantProps): React.JSX.Element; type CustomToastProps = Pick; export declare function CustomToast({ children, showCloseButton, setState }: CustomToastProps): React.JSX.Element; export {};