import { AxiosInstance } from 'axios'; import { BatchesController, FermentablesController, HopsController, MiscsController, RecipesController, YeastsController } from './controllers'; export * from './models'; export declare class BrewfatherV2Client { protected axios: AxiosInstance; readonly recipes: RecipesController; readonly batches: BatchesController; readonly inventory: { fermentables: FermentablesController; hops: HopsController; miscs: MiscsController; yeasts: YeastsController; }; constructor(userId: string, apiKey: string); }