import type { ToastContainerProps, ToastProps } from './types'; export type ToastControllerContextType = { show: (props: Omit) => string; hide: (id: string) => void; clearAll: () => void; }; export declare const fallbackToastControlContext: ToastControllerContextType; export declare const ToastContext: import("react").Context; type ToastConfigContextType = Pick; export declare const ToastConfigContext: import("react").Context; export declare const useToastConfig: () => ToastConfigContextType; export declare const useToast: () => ToastControllerContextType; export {};