import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const showToastVariants: (props?: ({ variant?: "default" | "destructive" | "success" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface ShowToastProps extends React.HTMLAttributes, VariantProps { title?: string; description: string; action?: React.ReactNode; } declare const ShowToast: React.ForwardRefExoticComponent>; export default ShowToast;