import * as React from 'react'; import type { ToastObject } from '../useToastManager'; import type { ToastRootState } from './ToastRoot'; export interface ToastRootContext { toast: ToastObject; state: ToastRootState; titleId: string | undefined; setTitleId: (id: string | undefined) => void; descriptionId: string | undefined; setDescriptionId: (id: string | undefined) => void; } export declare const ToastRootContext: React.Context; export declare function useToastRootContext(): ToastRootContext; //# sourceMappingURL=ToastRootContext.d.ts.map