export type ToastContext = { title: (wordToReplace: string) => string; information?: (wordToReplace: string) => string; error: (wordToReplace: string) => string; success: (wordToReplace: string) => string; urlParts?: string[]; statusCodes?: { [key: string]: (wordToReplace: string) => string; }; };