import { IconType } from '../Icon'; interface TypeMap { [name: string]: { className: string; icon: IconType; }; } /** * Maps toast types to their classNames and icons */ export declare const typeMap: TypeMap; export declare const tabIndexHandler: (reset: boolean, toast: HTMLElement | null) => any; export {};