import { ImageInput, ObdcodesdecoderInput, PlateDecoderParams, VinInput } from './types';
export declare const Greeter: (name: string) => string;
export declare class CarsXE {
    private apiKey;
    constructor(apiKey: string);
    private getApiKey;
    private getApiBaseUrl;
    specs({ vin }: VinInput): Promise<any>;
    marketvalue({ vin }: VinInput): Promise<any>;
    history({ vin }: VinInput): Promise<any>;
    platedecoder({ plate, state, country }: PlateDecoderParams): Promise<any>;
    images({ make, model, year, trim, color, transparent, angle, photoType, size, license, }: ImageInput): Promise<any>;
    obdcodesdecoder({ code }: ObdcodesdecoderInput): Promise<any>;
}
export default CarsXE;
