export interface IDict { [key: string]: T; } export type LocFn = ( key: string, substitutions?: IDict | string[], options?: IDict ) => string; export type ResizeIframeFn = () => void;