import { Language } from "../enums/Language";
import { IRecipeProductsResponse } from "../interfaces/migusto/recipe-products";
export interface IRecipeProductOptions extends Record<string, any> {
    id: string;
    language?: Language;
    limit?: number;
    offset?: number;
}
export declare function getRecipeProducts(recipeProductOptions: IRecipeProductOptions): Promise<IRecipeProductsResponse>;
