import { Base } from './Base'; /** * ProgramResponse interface */ interface ProgramResponse { id: string; name: string; type: string; campus: string; description: string | null; enrollment: string | null; completion: string; last_updated: string; } export declare class Programs extends Base { endpoint: string; constructor(); /** * Get a Programs array. * * @return ProgramResponse array */ get(): Promise; } export {};