import { Recipe } from '../models'; import { GetAll, GetById } from '../mixins'; import { AxiosInstance } from 'axios'; type IncompleteRecipe = Pick; declare const RecipesController_base: new (axios: AxiosInstance, route: string) => GetAll> & GetById & import("../../utils").BaseClass; export declare class RecipesController extends RecipesController_base { constructor(axios: AxiosInstance); } export {};