export type Mode = 'simple' | 'default'; export type AlertType = 'success' | 'info' | 'warning' | 'error'; export type InsertFnType = (url: string, alt?: string, href?: string) => void;