import { Base } from './Base'; /** * TextbookResponse interface */ interface TextbookResponse { id: string; isbn: string; title: string; edition: number; author: string; image: string; price: number; url: string; courses: { id: string; code: string; requirement: string; meeting_sections: { code: string; instructors: string[]; }[]; }[]; last_updated: string; } export declare class Textbooks extends Base { endpoint: string; constructor(); /** * Get an Textbooks array. * * @return TextbookResponse array */ get(): Promise; } export {};