import { TStudentInfo } from "src/lib/types/student-info";
import { PHXGrpcClientSystemService } from "../grpc-client/grpc-client-system.service";
export declare class PHXStudentInfoServiceSystemV3 {
    private readonly grpcSystemService;
    constructor(grpcSystemService: PHXGrpcClientSystemService);
    get(student_id: number, hostname: string): Promise<TStudentInfo>;
}
