/*! * * Wijmo Library 5.20251.40 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ import { ControlBaseEvents, ControlBaseInputs } from 'wijmo/wijmo.react.base'; import { IBarcodeFont, IQuietZone, RenderType } from 'wijmo/wijmo.barcode'; import { EventArgs, IEventHandler } from 'wijmo/wijmo'; export declare type BarcodeBaseInputs = ControlBaseInputs & { backgroundColor?: string; color?: string; font?: IBarcodeFont; hideExtraChecksum?: boolean; isValid?: boolean; quietZone?: IQuietZone; renderType?: RenderType | string; value?: string | number; }; export declare type BarcodeBaseEvents = ControlBaseEvents & { isValidChanged?: IEventHandler; }; export declare const BarcodeBaseMeta: { inputs: string[]; events: string[]; };