import { AxiosInstance } from 'axios'; import { Fermentable } from '../../models'; import { GetAll, GetById, Update } from '../../mixins'; import { GetAllInventoryOptions, UpdateInventoryParams } from './types'; type IncompleteFermentable = Pick; declare const FermentablesController_base: new (axios: AxiosInstance, route: string) => GetAll> & GetById & Update & import("../../../utils").BaseClass; export declare class FermentablesController extends FermentablesController_base { constructor(axios: AxiosInstance); } export {};