import { Type } from "../types/models/type"; import { Make, Model } from "../types/models"; import { ApiCallOptions } from "../base"; export declare const fetchMakes: ({ options, }?: { options?: ApiCallOptions; }) => Promise; export declare const fetchModels: ({ makeKey, options, }: { makeKey: string; options?: ApiCallOptions; }) => Promise; export declare const fetchType: ({ id, options, }: { id: number; options?: ApiCallOptions; }) => Promise;