import React from "react";
import { ToastType } from "../types";
export type ToastComponentProps = {
    text: string;
    type: ToastType;
    onPress?: () => void;
};
export declare const ToastComponent: ({ text, type, onPress }: ToastComponentProps) => React.JSX.Element;
