export interface ObjectType { [key: string]: T; } declare function substitute(str: string, o: ObjectType): string; export default substitute;