// Add your own types and interfaces here using 'declare'// All types and interfaces declared in this file are global to the project// Beware! Do not use import or export in this file. This is not a module.declareinterfaceStudent {
name: string;
age: number;
}