import React from 'react'; import type { StateStore } from 'mythik'; interface ToastContainerProps { store: StateStore; onDismiss: (id: string) => void; position?: string; duration?: number; maxVisible?: number; renderIcon?: (name: string, size: number, color: string) => React.ReactNode; _tokens?: Record; testID?: string; } export declare function ToastContainer({ store, onDismiss, duration, maxVisible, renderIcon, _tokens, testID }: ToastContainerProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=toast-container.d.ts.map