import { FunctionComponent, ReactElement } from 'react';

type ToastStatus = 'neutral' | 'success' | 'warning' | 'danger' | 'discover';
type ToastVariation = 'sm' | 'lg';
interface ToastProps {
    buttons?: ReactElement;
    message: string | ReactElement;
    status?: ToastStatus;
    variation?: ToastVariation;
}
declare const Toast: FunctionComponent<ToastProps>;

export { Toast as default };
export type { ToastProps };
