import type { ToastProps } from "./Toast"; interface ShowToastOptions { /** * The locale to use for translated strings inside the toast (e.g. the * dismiss button aria-label). Defaults to `"en"`. * * Pass the same locale you provide to `AtlantisContext.Provider` in your * app so that toast strings stay consistent with the rest of the UI. */ readonly locale?: string; } export declare function showToast(props: ToastProps, options?: ShowToastOptions): void; export {};