export declare class LicensePlateResult { private 'plate_number'?; private 'plate_color'?; private 'plate_location'?; confidence?: number; constructor(plateNumber?: string, plateColor?: string, plateLocation?: Array>, confidence?: number); withPlateNumber(plateNumber: string): LicensePlateResult; set plateNumber(plateNumber: string | undefined); get plateNumber(): string | undefined; withPlateColor(plateColor: string): LicensePlateResult; set plateColor(plateColor: string | undefined); get plateColor(): string | undefined; withPlateLocation(plateLocation: Array>): LicensePlateResult; set plateLocation(plateLocation: Array> | undefined); get plateLocation(): Array> | undefined; withConfidence(confidence: number): LicensePlateResult; } //# sourceMappingURL=LicensePlateResult.d.ts.map