import { InfoHelper } from "../index"; import { SportsIdInfo, SportsReservationRecord, SportsResourcesInfo } from "../models/home/sports"; export declare const VALID_RECEIPT_TITLES: readonly ["清华大学", "清华大学工会", "清华大学教育基金会"]; export type ValidReceiptTypes = typeof VALID_RECEIPT_TITLES[number]; export declare const updateSportsPhoneNumber: (helper: InfoHelper, phone: string) => Promise; export declare const getSportsResources: (helper: InfoHelper, gymId: string, itemId: string, date: string) => Promise; export declare const getSportsCaptchaUrlMethod: () => string; export declare const makeSportsReservation: (helper: InfoHelper, totalCost: number, phone: string, receiptTitle: ValidReceiptTypes | undefined, gymId: string, itemId: string, date: string, captcha: string, resHashId: string, skipPayment: boolean) => Promise; export declare const getSportsReservationRecords: (helper: InfoHelper) => Promise; export declare const paySportsReservation: (helper: InfoHelper, payId: string, receiptTitle: ValidReceiptTypes | undefined) => Promise; export declare const unsubscribeSportsReservation: (helper: InfoHelper, bookId: string) => Promise; export declare const sportsIdInfoList: SportsIdInfo[];