import { Student } from "../dto/"; import { mySqlConnection } from "./mySqlConnection"; import { RepositoryBase } from "./RepositoryBase"; export declare class StudentRepository extends RepositoryBase { readonly tableName: string; constructor(connection: mySqlConnection); get(student: Student): Promise; create(student: Student): Promise; update(obj: Student): Promise; delete(obj: Student): Promise; }