export type VinInput = {
    vin: string;
};
export type SpecsInput = {
    vin: string;
    deepdata?: string;
    disableIntVINDecoding?: string;
};
export type PlateDecoderParams = {
    plate: string;
    country: string;
    state?: string;
    district?: string;
};
export type ImageInput = {
    make: string;
    model: string;
    year?: string;
    trim?: string;
    color?: string;
    transparent?: boolean;
    angle?: 'front' | 'side' | 'back';
    photoType?: 'interior' | 'exterior' | 'engine';
    size?: 'Small' | 'Medium' | 'Large' | 'Wallpaper' | 'All';
    license?: 'Public' | 'Share' | 'ShareCommercially' | 'Modify' | 'ModifyCommercially';
};
export type ObdcodesdecoderInput = {
    code: string;
};
export type PlateImageRecognitionInput = {
    imageUrl: string;
};
export type VinOcrInput = {
    imageUrl: string;
};
export type YearMakeModelInput = {
    year: string;
    make: string;
    model: string;
    trim?: string;
};
