import { type ToastSlotRecipeVariant } from '../../../styled-system/recipes'; import { type ToastApiProps } from './toast.types'; export declare const toast: { show: (props: ToastApiProps | string, type?: ToastSlotRecipeVariant["type"]) => void; success: (props: ToastApiProps | string) => void; failure: (props: ToastApiProps | string) => void; busy: (props: ToastApiProps | string) => void; progress: (props: ToastApiProps | string) => void; caution: (props: ToastApiProps | string) => void; destroy: (key?: string) => void; };