import { RecyclingMeta } from '@/types/locatorApi'; /** * Get a tip for a material or path, falling back to a random generic tip */ export default function getTip(meta: RecyclingMeta[], options?: { path?: string; materialId?: string | number; country?: string; }): RecyclingMeta; /** * Get a tip for a given path name * * @param path - The path to get the tip for (a path can be set in the admin) * @param fallback – whether to fallback to a random tip if no tip is found for the path */ export declare function getTipByPath(path: string, { fallback }?: { fallback?: boolean; }): Promise; export declare function getTipByMaterial(materialId: string): Promise;