export declare const ToastTypes: {
    readonly ERROR: "error";
    readonly SUCCESS: "success";
    readonly WARNING: "warning";
    readonly INFO: "info";
};
export type ToastType = (typeof ToastTypes)[keyof typeof ToastTypes];
export type AddToastOptions = {
    type: ToastType;
    text: string;
    duration?: number;
    onPress?: (hide: () => void) => void;
};
