import { z } from "zod"; import type { MountaineersClient } from "../client.js"; import type { CourseDetail } from "../types.js"; export declare const getCourseSchema: z.ZodObject<{ url: z.ZodString; }, z.core.$strip>; export type GetCourseInput = z.infer; export declare function getCourse(client: MountaineersClient, input: GetCourseInput): Promise; //# sourceMappingURL=get-course.d.ts.map