import type { CancelablePromise } from '../core/CancelablePromise'; export declare class DefaultService { /** * Unknown Calc * Returns 404 for any /v1/calc/{cat}/{kind} not registered above. * * Note: this only fires for combinations NOT registered by the loop above — * FastAPI matches explicit routes first. * @returns any Successful Response * @throws ApiError */ static unknownCalcV1CalcCategoryKindPost({ category, kind, }: { category: string; kind: string; }): CancelablePromise; } //# sourceMappingURL=DefaultService.d.ts.map