export interface JToastProps { title?: string; description?: string; color?: "success" | "error" | "warning" | "info"; } declare function JToast({ title, description, color }: JToastProps): import("react/jsx-runtime").JSX.Element; export default JToast;