import React from "react"; import type { ToastPosition } from "react-native-toast-message"; export interface JobberToastProps { /** * Offset from the bottom of the screen in px. * Has effect only when the position is "bottom". * @default 40 */ readonly bottomOffset?: number; } export declare function JobberToast({ bottomOffset }: JobberToastProps): React.JSX.Element; export interface ShowToastParams { /** * Message to be displayed in the toast */ readonly message: string; /** * Indicates if the bottom tabs are being shown * It is equired to define the display position of the toast. */ readonly bottomTabsVisible: boolean; /** * Where the toast will be positioned * @default "bottom" */ readonly position?: ToastPosition; } export declare function showToast({ message, bottomTabsVisible, position, }: ShowToastParams): void;