import type { WrappedDartboard } from "../models/WrappedDartboard"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class DartboardService { /** * Retrieve an existing dartboard * Retrieve an existing dartboard. This will return the dartboard's information, including the title and description. * @param id * @returns WrappedDartboard Success, including the retrieved dartboard * @throws ApiError */ static getDartboard(id: string): CancelablePromise; }