import { ReactNode } from 'react'; export declare const showToast: { (message: ReactNode, duration?: number, position?: string): void; success(prop?: alert): void; warn(prop?: alert): void; info(prop?: alert): void; primary(prop?: alert): void; error(prop?: alert): void; custom(prop?: alert): void; }; export declare const General: (message: ReactNode, duration: number | undefined, position: "left" | "right" | "center" | "bottom" | "bottom-right" | "bottom-left" | undefined, className: "q_toast_success" | "q_toast_error" | "q_toast_warn" | "q_toast_primary") => HTMLDivElement; type alert = { text?: string; duration?: number; position?: 'left' | 'right' | 'center' | 'bottom' | 'bottom-right' | 'bottom-left'; } | string; export default showToast;