import { Params } from "./types"; declare type AllowedTypes = "photo" | "video" | "collections"; export default function createFetchWrapper(apiKey: string, type: AllowedTypes): (path: string, params?: T | undefined) => Promise; export {};