import { ToastProps } from "./Toast"; export declare const useToast: (initial?: ToastProps | undefined) => { show: (message: string) => string | undefined; dismiss: (key: string) => void; };